/**
 * $Id$
 * Created: 06/05/2008
 * $Log$
 *
 */

function popup(strUrl, windowname)
{
	if(!window.focus) return true;
	
	if(typeof(strUrl)!='string') strUrl=strUrl.href;
	
	var popwidth=465;
	var popleft=(screen.width-popwidth)/2;
	var popheight=465;
	var popright=(screen.height-popheight)/2;
	
	var win=window.open(strUrl, windowname, 'status=0, height='+popheight+', width='+popwidth+' resizable=0,scrollbars=no,toolbars=no,location=no, left='+popleft+', top='+popright);
	win.focus();
	
	return false;
}