
function resizeWin(newLoc, newHeight, newWidth)
{
  newWin = open("",newLoc,"scrollbars=no,resizable=yes,status=no,height=" + newHeight + ",width=" + newWidth);
}
  

function open_window(file,width,height)
{
    window.open(file,"new_window", "fullscreen=no,toolbar=no,status=yes,menubar=no,scrollbars=yes,izable=yes,directories=no,location=no,left=0,top=0,width="+width+",height="+height);
    return false;
}
