function newWindow(newContent)
{
lwidth  = window.screen.width;
lheight = window.screen.height;
winContent = window.open(newContent, 'nextWin', 'left=0, top=0, width='+lwidth+', height='+lheight+', location=yes, menubar=yes, toolbar=yes, scrollbars=yes, fullscreen=yes, resizable=yes');
}
var statusmsg="";
function hidestatus(){
window.status=statusmsg
return true
}

