// Ventanas emergentes lanzadas desde el site


function contacto(){
//	url="contacto.asp";
	url="http://www.perseiconsulting.com/securetrans/324reg9/722shci11/renacimiento/main_page/contacto.asp";
	w=420;
	h=365;
	x=(screen.width-w)/2;
	y=(screen.height-h)/2;
	ventana=window.open(url,'contacto','width='+w+',height='+h+',left='+x+',top='+y+',scrollbars=no,resize=no,status=no');
	//la doy foco
	ventana.focus();

}

function registro(){
	url="login_window.asp";
	w=550;
	h=300;
	x=(screen.width-w)/2;
	y=(screen.height-h)/2;
	ventana=window.open(url,'registro','width='+w+',height='+h+',left='+x+',top='+y+',scrollbars=no,resizable,status=no');
	//la doy foco
	ventana.focus();

}
