function openWin(URL,aName,wName,Scroll,W,H,T,L) {
	window.name = aName
	aWindow = window.open(URL,wName,"toolbar=no,location=no,directories=no,status=no,,scrollbars="+ Scroll +",width="+ W +",height="+ H +",top="+ T +",left="+ L +",resizable=no,menubar=no");
}

function fullScreen(URL,aName,wName,W,H) {
	window.name = aName
	aWindow = window.open(URL,wName,"toolbar=yes,location=no,directories=no,status=no,,scrollbars=yes,width=1024,height=768,top=10,left=10,resizable=yes,menubar=yes");
}

