 <!--
 if (parent.frames.length>=1) {
 window.top.location.href=document.location;
 }
 //-->


function resizeWin(newLoc, newWidth, newHeight) 
{
        newWin = open("",newLoc,"scrollbars=no,resizable=no,status=no,height=" + newHeight + ",width=" + newWidth);
}


function resizeWinScroll(newLoc, newWidth, newHeight) 
{
        newWin = open("",newLoc,"scrollbars=yes,resizable=yes,status=no,height=" + newHeight + ",width=" + newWidth);
}


