﻿

var win
function openWin(file,w,h,scr,menu,stat,tool,name)
        {
                win = window.open(file,name,"scrollbars="+scr+",resizable=yes,menubar="+menu+",status="+stat+",toolbar="+tool+",width="+w+",height="+h+",screenx=0,screeny=0,top=0,left=0");
                win.focus();
        }
		
		
var winsmscroll
function openWinSmallScroll(file,w,h,scr) {
	winsmscroll = window.open(file, "winsmall", "scrollbars=yes,resizable=yes,menubar=no,status=no,toolbar=no,width=" + w + ",height=" + h + ",screenx=0,screeny=0,top=0,left=0");
	winsmscroll.focus();
}


var winlg
function openWinLarge(file) {
	winlg = window.open(file, "winlarge", "scrollbars=yes,resizable=yes,menubar=yes,status=yes,toolbar=yes,width=690,height=480,screenx=0,screeny=0,top=0,left=0");
   	winlg.focus();
}

