function openPage(url,W,H){
if(screen){
	leftPos=(screen.width-W)/2;
	topPos=(screen.height-H)/2;
}
newWin=window.open(url,'popWin', 'toolbar=no,scrollbars=yes,resizable=yes,menubar=no,status=no,width='+W+',height='+H+',left='+leftPos+',top='+topPos+'');
newWin.focus();
}

function openWin(url,W,H,title){
if(screen){
	leftPos=(screen.width-W)/2;
	topPos=(screen.height-H)/2;
}
newWin="a=window.open('','popWin', 'toolbar=no,scrollbars=yes,resizable=yes,menubar=no,status=no,width=" + W + ",height="+ H +",left='+leftPos+',top='+topPos+'');";
eval(newWin);
    var winString="" +
"<html>" +
"<head>" +
"<title>" + title + "</title>" +
"</head>" +
"<body>" +
"<div align='center'><img src='"+ url +"'><p><a href='javascript:window.close(this)'>close window</a></p></div>" +
""
"</body></html>";

a.blur();
a.document.open();
a.document.write(winString);
a.focus();
a.document.close();
}

function openFrame(url,FW,FH,W,H,title){
if(screen){
	leftPos=(screen.width-W)/2;
	topPos=(screen.height-H)/2;
}
newWin="a=window.open('','popWin', 'toolbar=no,scrollbars=yes,resizable=yes,menubar=no,status=no,width=" + W + ",height="+ H +",left='+leftPos+',top='+topPos+'');";
eval(newWin);
    var winString="" +
"<html>" +
"<head>" +
"<title>" + title + "</title>" +
"</head>" +
"<body>" +
"<div align='center'><IFRAME SRC='" + url +"' name='quoteModule' id='quoteModule' width='" + FW + "' height='" + FH + "' scrolling='no' marginheight='0' marginwidth='0' frameborder='0' status='no' statusbar='no' ></IFRAME><p><a href='javascript:window.close(this)'>close window</a></p></div>" +
""
"</body></html>";

a.blur();
a.document.open();
a.document.write(winString);
a.focus();
a.document.close();
}