

function openPark(usuario){  
  alert("ok");
  window.open('http://88.8.135.8/jugaras/indexflash.php?usuario='+usuario, '', 'width=950,height=580');
} 

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function goToURL(url){
	//alert("voy para el frame: usuarios/usuario_sesion_1.php?url="+url);
	document.formulario_post.action = url;
	document.formulario_post.submit();
	//window.frames['frame_sesion_1'].location = "usuarios/usuario_sesion_1.php?url="+url;
}

function goToURLj(url,usuario){
	alert("devolviendo llamada: "+usuario);
	//alert(document.formulario_post.action);
	document.formulario_post.action = url;
	document.formulario_post.usuario.value = usuario;
	alert(document.formulario_post.action+", "+document.formulario_post.usuario.value);
	document.formulario_post.submit();
}

function enviar_contacto(){
	if (document.formulario_contacto.nombre.value == ""){
		alert("Indícanos tu nombre");
		return false;
	}
	if (document.formulario_contacto.email.value == ""){
		alert("Indícanos tu email");
		return false;
	}
	if (document.formulario_contacto.comentario.value == ""){
		alert("No olvides realizar el comentario que desees sobre jugaras.com");
		return false;
	}
	document.formulario_contacto.submit();
}
