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