<!--

 function showPop(url) {
		if (window.name != 'popUpShown') {
			window.name = 'popUpShown';
			openScript(url,  400, 300);
			}
		return
		} 
		
function openScript(url, width, height) {
        var Win = window.open(url,"openScript",'width=' + width + ',height=' + height + ',resizable=yes,scrollbars=yes,menubar=no,status=no' );
		}		
		
		function popup(url, name, width, height)
{
settings=
"toolbar=no,location=no,directories=no,"+
"status=no,menubar=no,scrollbars=no,"+
"resizable=no,width="+width+",height="+height;
MyNewWindow=window.open(url,name,settings);
}
//-->