<!--
function openWin(name, width, height) {
newwin = window.open("",name,'resizable=yes,toolbar=yes,directories=yes,scrollbars=yes,menubar=yes,status=yes,location=yes,width='+width+',height='+height);
newwin.focus();
}

function openWin2(url, name, width, height) {
newwin = window.open(url,name,'resizable=yes,toolbar=yes,directories=yes,scrollbars=yes,menubar=yes,status=yes,location=yes,width='+width+',height='+height);
newwin.focus();
}

function jumpMenu()
{
newwin = window.open(document.menuform.nokiaww.value,"00","resizable=yes,toolbar=yes,directories=yes,scrollbars=yes,menubar=yes,status=yes,location=yes,width=650,height=600");
newwin.focus();
}
//-->
