// JavaScript Document
	/*function expandingWindow(website, flag) 
	{
	   var winwidth = screen.availWidth;
	   var winheight = screen.availHeight;
	
		if (flag) 
		{
			var l = ( screen.width - 300 )/2 -15;
			var t = ( screen.height - 200 )/2 - 0;		   
			window.open(website,'reportwindow','left='+l+',top='+t+',width=300,height=200,menubar=no,status=no,location=no,scrollbars=yes,fullscreen=yes,directories=no,resizable=yes');
		}
		else if (document.all) 
		{
		   var sizer = window.open("","","left=0,top=0,width=winwidth,height=winheight,scrollbars=yes,fullscreen=yes");
		   sizer.location = website;
		} 
		else 
		{
		   window.open(website,'fotowindow','width=winwidth,height=winheight,menubar=no,status=no,location=no,scrollbars=yes,fullscreen=yes,directories=no,resizable=yes');
		}
	}*/
	function expandingWindow(website, name,  w, h, fullscreen) 
	{
		if (w==0 && h==0)
		{
		   newwindow = window.open(website,name,'width=winwidth,height=winheight,menubar=no,status=no,location=no,scrollbars=yes,fullscreen=yes,directories=no,resizable=yes');
			
		}
		else
		{
			var l = ( screen.width - w )/2 ;
			var t = ( screen.height - h )/2 - 50;	
			newwindow =  window.open(website,name,'left='+l+',top='+t+',width='+w+',height='+h+',menubar=no,status=no,location=no,scrollbars=yes,fullscreen='+fullscreen+',directories=no,resizable=yes');
		}
		newwindow.focus();
	}
			
					