<!--//BEGIN Script
function errorSafe() {return true;}
window.onerror = errorSafe;
// declare global variable name
	var popUp = null;
// declare default pop-up window parameters (0 = no, 1 = yes)
	var tl = 0; // toolbars
	var lo = 0; // location bar
	var di = 0; // location bar
	var st = 0; // status bar
	var mn = 0; // menu bar
	var sc = 1; // scrollable
	var rs = 0; // resizable
	var wd = 642; // wd = width (pixels)
	var hi = 470; // hi = height (pixels)
	


function new_window(url,name,tl,lo,di,st,mn,sc,rs,wd,hi)
{
	// check if window already exists
	if (!popUp || popUp.closed) 
	{
		// store new window object in global variable
		popUp = window.open(url,name,'toolbar='+tl+',location='+lo+',directories='+di+',status='+st+',menubar='+mn+',scrollbars='+sc+',resizable='+rs+',width='+wd+',height='+hi);
		popUp.xurl = url;
	}
	else 
	{
	// window already exists, so check wether it's name is the same
		if (popUp.xurl == url)
		{
			popUp.focus()
		}
		else
		{
			popUp.close();
			popUp = window.open(url,name,'toolbar='+tl+',location='+lo+',directories='+di+',status='+st+',menubar='+mn+',scrollbars='+sc+',resizable='+rs+',width='+wd+',height='+hi);
		}
	}
}    
function xxx(url,name)
{
	var w = window.open(url,name);
	w.focus();
}    
//END Script-->