<!--
function popUp( url, height, width )
{
	if ( height == undefined )
	{
		height = 500;
	}
	if ( width == undefined )
	{
		width = 500;
	}
	var windowOptions = ",status=no,toolbar=no,menubar=no,scrollbars=yes,resizable=no,screenX=0,screenY=0,left=0,top=0";
	var popWindow = window.open(url,'','width=' + width + ',height=' + height + windowOptions);
	popWindow.focus;
}
//-->
