<!--
    function openWindow(url,winName,x,y)
    {
    remote=window.open(url,winName,'directories=0,location=0,menubar=0,resizable=1,scrollbars=1,status=0,toolbar=0,width=' + x + ',height=' + y );
	remote.focus();
    }
	
    function openPrintWindow(url,winName)
    {
	x=600;
	y=600;
    remote=window.open(url,winName,'directories=0,location=0,menubar=1,resizable=1,scrollbars=1,status=0,toolbar=0,width=' + x + ',height=' + y );
	remote.focus();
    }
	
    function openVideoWindow(url,winName,x,y)
    {
	// for ISDN: width=245,height=450, before: width=184,height=450
    remote=window.open(url,winName,'directories=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0,width=' + x + ',height=' + y );
	remote.focus();
    }
	
	var win=null;
	function NewWindow(mypage,myname,w,h,scroll,pos){
	if (document.all) {
		settings 	='fullscreen=yes, scrollbars=no';
		win=window.open(mypage,myname,settings);
		}
	else if (document.layers) {
		settings='width='+(screen.width-10)+',height='+screen.height+',top=0,left=0,scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
		win=window.open(mypage,myname,settings);
		}
	}
//-->


