var newwindow;
function OpenWind(url)
{
	newwindow=window.open(url,'name','width=650 height=500 resizable=yes,scrollbars=yes,toolbar=no,status=no');
}

function OpenWin(sPageUrl)
{
        if (navigator.appName == "Netscape")
            newwindow = window.open(sPageUrl,"Help","toolbar=0,menubar=0,width=650,height=500,scrollbars=1,resizable=1");
        else
            newwindow = window.open(sPageUrl,"Help","toolbar=0,menubar=0,width=650,height=500,scrollbars=1,resizable=1");
        newwindow.focus();
}

//-->