// JavaScript Document

function CreateSWF(DivID, URL, w, h)
{
  var d = document.getElementById(DivID);
  d.innerHTML = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+w+'" height="'+h+'"><param name="wmode" value="transparent"><param name="movie" value="' + URL + '"><param name="autoStart" value="false"><embed src="' + URL +'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" height="'+h+'" width="'+w+'" style="background:#000000;" wmode="transparent"></embed></object>';
}

/* Funcion para validar el formulario de contacto */
function validarContacto(){
	mail = document.getElementById("txt_email").value;
	msg = document.getElementById("area_mensaje").value;
	
	if (mail == "" || !validar_mail(mail)){
		alert("Por favor corrija la direccion de E-Mail."); return false;
	}
	if (msg == "" || msg.length < 10){
		alert("Por favor ingrese un mensaje de contacto."); return false;
	}
	
	document.getElementById("form_contacto").submit();
	return true;
}

function validar_mail(t){

 if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(t)){
 return (true);
 }
 else {
 return (false);
 }

}

// FUNCION VALIDAR
function validate(o){
	pin = document.getElementById(o).value;
	data = o.split("_");
	
	// Tipo de contenido
	if (data[0] == "gl" || data[0] == "tp"){
		tipo = 1;
	} else if (data[0] == "vd") {
		tipo = 2;
	}
	
	// Asignacion
	document.getElementById("pin").value = pin;
	document.getElementById("pindata").value = tipo + "#" + data[1] + "#" + data[2];
	document.getElementById("validate_pin").submit();
	
	//alert("EL PIN INGRESADO ES: " + pin + "\ny el contenido es del tipo: " + tipo);
}

function openPPMembers(){
	win = window.open("", "", "width=500px,height=400px");
	win.document.location.href = "?go=members&do=popup";
}

// Funcion multiplataforma para agregar Favoritos en IE y Firefox
function addBookmark(t) {

	var_title = "Videos Porno | Videos Porno Caseros | Videos Eróticos Amateurs | Videos Largos | Videos por SMS";
	var_url = t;

	if ( window.sidebar ) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(var_title, var_url, "");
	} else { // IE Favorite
		window.external.addFavorite(var_url, var_title);
	}
}