
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// PopUpWindow
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// SIN SCROLL
function PopUpWindow(URL,Ancho,Alto) {
	Izquierda = (screen.width-Ancho)/2;
	Arriba= (screen.height-Alto)/2; 
	ventana = window.open(URL, "", 'width='+Ancho+',height='+Alto+',left='+Izquierda+',top='+Arriba+',fullscreen=no,toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0,scrolling=0,scrollbars=0');
}
// CON SCROLL
function PopUpWindow2(URL,Ancho,Alto) {
	Izquierda = (screen.width-Ancho)/2;
	Arriba= (screen.height-Alto)/2; 
	ventana = window.open(URL, "", 'width='+Ancho+',height='+Alto+',left='+Izquierda+',top='+Arriba+',fullscreen=no,toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=1,scrolling=1,scrollbars=1');
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// BUSCADOR
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function Buscar(Palabras){
	Url = 'http://www.google.com.mx/search?q='+Palabras;
	ShowDiv(Url);
	//document.getElementById("DivBig").style.display = 'block';
	//document.getElementById("DivBigFrame").src = 'http://www.google.com.mx/search?q='+Palabras;
}
function Deportes(Url){
	//ShowDiv(Url,760,590);
	ShowDiv(Url,document.body.clientWidth,document.body.clientHeight-60);
}
function Eventos(){
	ShowDiv("data/eventos.php");
}
function Chicas(){
	ShowDiv("data/chicas.php");
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// SHOW DIV
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function ShowDiv(Url){
	javascript:scroll(0,0);
	document.body.style.overflow = 'hidden';
	//
	Div = document.getElementById("DivOver");
	// ESTO LO PONE ALALTO DEL BODY
	//Div.style.width = document.getElementById('Tabla').clientWidth+'px';
	//Div.style.height = document.getElementById('Tabla').clientHeight+'px';
	Div.style.display = 'block';
	//
	Frame = document.getElementById("DivOverFrame");
	Frame.src = Url;
}
function CloseDiv(){
	document.body.style.overflow = 'auto';
	//
	document.getElementById("DivOver").style.display = 'none';
	document.getElementById("DivOverFrame").src = '';
}
