var win = null;
var winName = "titulo";

function AbreN( theURL, ancho, alto )
{
    var h = ( screen.width - ancho ) / 2;
    var v = ( screen.height - alto ) / 2;
    var windowprops = "top=0,left=0,toolbar=no,location=no,status=no,menubar=no,scrollbars=no, resizable=no,width="+ancho+",height="+alto+",left="+h+", top="+v;
    if (win) win.close();
    win = window.open( theURL, winName, windowprops );
}

function BorraContacto()
{
	document.getElementById( 'nombre' ).value = "";
	document.getElementById( 'empresa' ).value = "";
	document.getElementById( 'telefono' ).value = "";
	document.getElementById( 'correo' ).value = "";
	document.getElementById( 'direccion' ).value = "";
	document.getElementById( 'cp' ).value = "";
	document.getElementById( 'poblacion' ).value = "";
	document.getElementById( 'provincia' ).value = "";
	document.getElementById( 'pais' ).value = "";
	document.getElementById( 'comentario' ).value = "";
}

function CmpContacto()
{
	if( document.getElementById( 'nombre' ).value == "" )
	{
		alert( 'Rellene el campo "Nombre", por favor.' );
		return false;
	}
	
	if( document.getElementById( 'telefono' ).value == "" )
	{
		alert( 'Rellene el campo "Teléfono", por favor.' );
		return false;
	}
	
	if( document.getElementById( 'correo' ).value == "" )
	{
		alert( 'Rellene el campo "Correo Electrónico", por favor.' );
		return false;
	}
	
	// comprobar validez correo
	
	if( document.getElementById( 'comentario' ).value == "" )
	{
		alert( 'Rellene el campo "Comentario", por favor.' );
		return false;
	}
	
	return true;
}

function PonInicio()
{
	document.getElementById( 'animacionIni' ).style.display = 'none';
	document.getElementById( 'contenedor' ).style.display = 'block';
}
