function OpenWindow(FileName)

{
newWindow = window.open(FileName, "newWindow", "scrollbars=1, resizable=1, width=600, height=400");
newWindow.focus()
}
