/*
modules JavaScript-Code
Copyright ©2006-2007 ILYNET www.ILove-You.NET 
All rights reserved

Programmer:	Joachim Ruf 
			Krumme Länder 2
			72108 Rottenburg
*/







  
  
 
  //show background shadow 
  function show_shadow(){
	document.getElementById('outer_shadow').style.width = window.innerWidth;//set WH position
	document.getElementById('outer_shadow').style.height = window.innerHeight;
	
	document.getElementById('inner_shadow').style.left = window.innerWidth / 2 - 202;//set WH position
	document.getElementById('inner_shadow').style.top = window.innerHeight /2 - 100;
	window.scroll(0,0);
	//window.moveBy(0,0);
	
	document.getElementById('outer_shadow').style.display='';
	document.getElementById('inner_shadow').style.display='';
}

