function fullWin (pageURL,pageTitle){
	var Width = screen.availWidth;
	var Height = screen.availHeight;
	Window = window.open(pageURL,pageTitle,
	"outerwidth=" + Width + ",outerheight=" + Height + ",top=0,left=0");
	Window.resizeTo(Width,Height);
	//"fullscreen=1");
	}