// JavaScript Document
		show=function(){
			document.getElementById('sombra').className='sombraLoad';
			document.getElementById('window').className='windowLoad';
			document.getElementById('window').style.left = (screen.width-document.getElementById('window').style.width)/3;
			document.getElementById('window').style.top = 200;
//(screen.height-document.getElementById('window').style.height)/3;
		}
		
		hide=function(){
			document.getElementById('sombra').className='sombraUnload';
			document.getElementById('window').className='windowUnload';
			document.getElementById('window').style.left = (screen.width-document.getElementById('window').style.width)/3;
			document.getElementById('window').style.top = 200;
//(screen.height-document.getElementById('window').style.height)/3;
		}
