<!--

function openWin(url,name,w,h,x,y) {
	winvar = window.open(url,name,'width='+w+',height='+h+',screenx='+x+',screeny='+y+',status=no,menubar=no,scrollable=no,resizable=no');
	winvar.moveTo(x,y);     
	winvar.focus();     
    
        }

//-->