//	window.onresize= reloadme;
//	function reloadme()
//	{ 
//		setTimeout("window.location.reload()",1);
//	}

	function open_window(namn, window_name)	
	{
	window.open( namn , window_name,"toolbar=NO,location=NO,directories=NO,status=yes,menubar=NO,scrollbars=yes,resizable=yes,fullscreen=no,width=930,height=600,top=70,left=100")
	}
	
// Maximera fönster *******************************************
	function maximize()
	{
		top.window.moveTo(0,0); 
		if (document.all) 
		   { top.window.resizeTo(screen.availWidth,screen.availHeight); } 
		else if 
		   (document.layers || document.getElementById) 
		   { 
		   if 
			(top.window.outerHeight < screen.availHeight || top.window.outerWidth < 
		screen.availWidth)
			 { top.window.outerHeight = top.screen.availHeight; 
			   top.window.outerWidth = top.screen.availWidth; } 
		   } 
	}	

// Följande script är för att visa/dölja lager/tabell *******
function HideShow(name) { 
  var obj = document.getElementById(name); 
    obj.style.display = "none"; 
} 