<!--
function popupGlx(url) {
        var windowHeight;
        var windowWidth;
        var windowTop;
        var windowLeft;
        windowHeight=(screen.height*(80/100))*0.7;
        windowWidth=screen.width*(80/100);
        windowTop=(screen.height*(20/100))*0.7;
        windowLeft=screen.width*(19/100);
        window.open(url,"_blank",'toolbar=yes,location=yes,directories=no,status=yes,scrollbars=yes,resizable=yes,copyhistory=yes,menubar=yes,top='+windowTop+',left='+windowLeft+',width='+windowWidth+',height='+windowHeight);
        return false;
}

function openchildts(thisurl){
	browserName = navigator.appName;
	browserVer = parseInt(navigator.appVersion);
	condition = !(( (browserName.indexOf("Explorer") >=0 ) && (browserVer < 4) ) ||  ((browserName.indexOf("Netscape") >=0 ) && (browserVer < 2) ) ) ;
	if (condition == true  )
	CanAnimate = true;
	else
	CanAnimate = false;

	if ( CanAnimate ){

		var windowHeight;
		var windowWidth;
		var windowTop;
		var windowLeft;
		windowHeight=(screen.height*(80/100))*0.85;
		windowWidth=screen.width*(70/100);
		windowTop=(screen.height*(20/100))*0.8;
		windowLeft=screen.width*(28.5/100);

		msgWindow=window.open( '' ,'subwindow','toolbar=no,location=no,directories=no,status=yes,scrollbars=yes,menubar=no,resizable=yes,top='+windowTop+',left='+windowLeft+',width='+windowWidth+',height='+windowHeight);
		msgWindow.focus();
		msgWindow.location.href = thisurl;
	}
	else {
		msgWindow=window.open( thisurl,'subwindow','toolbar=no,location=no,directories=no,status=yes,scrollbars=yes,menubar=no,resizable=yes,width=510,height=420');
	}
}

//-->
