// JavaScript Document

function verContacto() 
{
	window.open('contacto.html','ContactoSLA','resizable=no,width=370,height=630');
}

function verImagen( urlImagen ) 
{
	window.open('galeria.html?img='+urlImagen,'Prensa','resizable=no,width=550,height=420');
}

function abrirPagnia( url, nombre )
{
	window.open(url, new Date().getTime(), 'resizable=1,toolbar=1,menubar=1,scrollbars=1,location=1,directories=1,status=1');
}

function get( name )
{
	var regexS = "[\\?&]"+name+"=([^&#]*)";
	var regex = new RegExp ( regexS );
	var tmpURL = window.location.href;
	var results = regex.exec( tmpURL );
	if( results == null )
		return"";
	else
		return results[1];
}
