<!-- Begin
function popup(url,wheight,wwidth) {
var winl = (screen.width - wwidth) / 2;
var wint = (screen.height - wheight) / 2;
var openString
openString = "'toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=0,width=" + wwidth + ",height=" + wheight + ",top="+wint+",left="+winl+"'"
sealWin=window.open(url,"",openString);
//javascript:window.close()
}
//-->


