<!-- Main Page Popup Window -->

window.name="parentWin";

function openWin(file, name) {

        popupWin = window.open(file, name, 'menubar=0,scrollbars=1,resizable=1,location=center,status=0,width=520,height=425');

        if ( (navigator.appName != "Microsoft Internet Explorer") && (navigator.appVersion.substring(0,1) == "3") )

        popupWin.focus();

}

