//<!-- Begin
var newWindow
function makeNewWindow(FileName, height, width, status, toolbar, scrollbars, directories, copyhistory, menubar, location) {
    newWindow = window.open(FileName,"PreviewWin" ,"HEIGHT=" + height + ",WIDTH=" + width +",STATUS=" + status + ",TOOLBAR=" + toolbar +
			   ",SCROLLBARS=" + scrollbars + ",DIRECTORIES=" + directories + ",COPYHISTORY=" + copyhistory + 
			   ",MENUBAR=" + menubar + ",LOCATION=" + location + ",RESIZABLE=1")
}

function fixedNewWindow(FileName) {
  makeNewWindow(FileName, '400','300','0','0','0','0','0','0','0')
}
// End -->