$(document).ready(function(){
	$("a.iframe").fancybox({
		"overlayShow" : false,
		"speedIn" : 400,
		"speedOut" : 400,
		"transitionIn" : "fade",
		"transitionOut" : "fade",
		"easingIn" : "easeOutBack",
		"easingOut" : "easeInBack",
		"centerOnScroll" : true,
		"padding" : 0,
		"width" : 830,
		"height" : 450,
		"titleShow" : false,
		"hideOnContentClick" : false
	});
	$("img.premium").qtip({
		content: "<strong>Abonné PREMIUM</strong><br />Vous pouvez contacter ce membre même sans abonnement",
		style : {
	  		classes: "ui-tooltip-premium"
		}
	});	
});

var submit_form1 = 0;
function submit_form(formulaire) {
	if (submit_form1 == 1) {
		alert("Vous avez déjà clické une fois, merci de patienter...");
	}
	else {
		submit_form1 = 1;
		document.forms[formulaire].submit();
	}
	
}

function checkNum(event) {
	var kc2;
	kc2 = window.event ?  window.event.keyCode : event.which; 
    if ( (kc2<48 || kc2>57) && kc2 != 0 && kc2 != 43 && kc2 != 46 && kc2 != 8  && kc2 != 9)  { return false; }
	return true;
}


function SelectAll(formulaire) {
	len = document.forms[formulaire].elements.length;
	var i=0;
	for( i=0; i<len; i++)
	{
		if (document.forms[formulaire].elements[i].type=="checkbox")
		{
			document.forms[formulaire].elements[i].checked = !document.forms[formulaire].elements[i].checked;
		}
	}
}

function AgendaZoom(p) {
	var option = 'width=50, height=50, scrollbars=yes, status=no, resizable=yes';
	window.open('/soirees-black/zoom_'+p+'.html?pu=1','Zoom',option);
}
function MsgHistorique(p) {
	var option = 'width=500, height=400, scrollbars=yes, status=no, resizable=yes';
	window.open('/membres/msg-historique.html?p='+p,'Historique',option);
}

function insert_flash(name,url,width,height,param) {
	document.write('<object name="'+name+'" id="'+name+'" type="application/x-shockwave-flash" data="'+url+'" width="'+width+'" height="'+height+'"><param name="movie" value="'+url+'" />'+param+'</object>');
}

function not_mb() {
	alert("Vous devez être membre pour accéder à cette page.\nVeuillez vous identifier ou vous inscrire");
}

function sky_vip() {
	$.get("/pub/sky_vip.php", function(data){
	  	$(".pub_120x600").html(data);
		$("a.iframe").fancybox({
			"overlayShow" : false,
			"speedIn" : 400,
			"speedOut" : 400,
			"transitionIn" : "fade",
			"transitionOut" : "fade",
			"easingIn" : "easeOutBack",
			"easingOut" : "easeInBack",
			"centerOnScroll" : true,
			"padding" : 0,
			"width" : 830,
			"height" : 450,
			"titleShow" : false,
			"hideOnContentClick" : false
		});
		
	});
	
}
