function OpenWindow(File,ImgWidth,ImgHeight) {
 PopUpWindow =
 // window.open(File, "Preview", "");
 window.open(File, "Preview", "width=" + ImgWidth + ",height=" + ImgHeight + ",scrollbars");
 PopUpWindow.focus();
}

