function gotoPage(pageName)
{
var docFrame = document.getElementById('docframe');
docFrame.src=pageName+".htm";
}


function gotoPagePhp(pageName)
{
var docFrame = document.getElementById('docframe');
docFrame.src=pageName+".php";
}

function nostatus()
{
window.status='';
return true;
}