function sendFormVid(form){
	if ( checkForm(form) ) {
			setFormVid(form);
			//form.action = 'http://10.101.0.112:8580/su/Register';		
		    //form.action = 'https://secure.ccrtvi.com/su/Register';
			form.action = '/su/Register';
			form.submit();
			$('#enviar').css('visibility','hidden')
	}

	//return false;
}

function checkForm(form) {
	if (isRequiredFieldEmpty(form.titol,"Títol") == true) return false;
	if (isRequiredFieldEmpty(form.lloc,"Lloc") == true) return false;
//	if (isRequiredFieldEmpty(form.descripcio,"Descripció") == true) return false;
	if (isRequiredFieldEmpty(form.elements['#_$$1type.IMAGE.ORIGIN'],"Fitxer") == true) return false;
	if (isRequiredFieldEmpty(form.elements['ALIAS_ID'],"Núm. de súper") == true) return false;
	if (isRequiredFieldEmpty(form.elements['CONTRASENYA'],"Contrasenya") == true) return false;
	return true;
}

function enviaForm() {
	var accio = "/psuper3/concursos/superfoto/superfotoLlistat.jsp?cerca="+document.forms[0].caixaText.value;
	document.forms[0].action = accio;
	document.forms[0].submit();
}	
	
function setFormVid(form) {
	form.hiAction.value = '2063';
	form.participableContentId.value = '18671';
	form.TITOL.value= form.titol.value;
	//form.TEXT.value= form.descripcio.value;
	form.ENTRADETA.value= form.lloc.value;	
	form.stateIdName.value = 'PDMOD';
	form.CAT.value = '45189'; // PRO : "45189" :  PRE : "45114";
	form.ESTAT.value = 'PDMOD';
	//disabledFormFields(form, true);
}

function initPolaroids(){
	$.ajax({
		type: "GET",
		url: "http://www.super3.cat/superfoto/ultimes_fotos_superfoto.xml?random="+Math.random()*Math.random()*Math.random(),
		dataType: "xml",
		success: function(xml) {
			$(xml).find('foto').each(function(){
				id=$(this).attr('num');
				url=$(this).find('url').text();
				$('#sf_foto'+id).html('<img src="'+url+'" alt="" />');
			});
			$('#sf_foto1 img').load(function(){
				width=$('#sf_foto1 img').width();
				height=$('#sf_foto1 img').height();
				if(width>height){
					$('#sf_foto1 img').css('height','130px');
				}else{
					$('#sf_foto1 img').css('width','150px');
				}
			});
			$('#sf_foto2 img').load(function(){
				width=$('#sf_foto2 img').width();
				height=$('#sf_foto2 img').height();
				if(width>height){
					$('#sf_foto2 img').css('height','130px');
				}else{
					$('#sf_foto2 img').css('width','150px');
				}
			});
			$('#sf_foto3 img').load(function(){
				width=$('#sf_foto3 img').width();
				height=$('#sf_foto3 img').height();
				if(width>height){
					$('#sf_foto3 img').css('height','130px');
				}else{
					$('#sf_foto3 img').css('width','150px');
				}
			});
			$('#sf_foto4 img').load(function(){
				width=$('#sf_foto4 img').width();
				height=$('#sf_foto4 img').height();
				if(width>height){
					$('#sf_foto4 img').css('height','130px');
				}else{
					$('#sf_foto4 img').css('width','150px');
				}
			});
		}
	});
}

function initTitols() {
$(document).ready(function(){
	$(".posrel .foto100mask").mouseover(function(){
		titolh3=$(this).find("h3").text();
		$('#overtit_fl span').text(titolh3);
		$('#overtit_fl').css("display","block");
		elem=$(this).get(0);
		twidth=$("#overtit_fl").get(0).clientWidth;
		$('#overtit_fl').css("left",elem.parentNode.offsetLeft-twidth+100+"px");
		$('#overtit_fl').css("top",elem.parentNode.offsetTop+77+"px");
	});
	$(".posrel .foto100mask").mouseout(function(){
		$('#overtit_fl').css("display","none");
	});
});
}

function initGuanyadors(){
$(document).ready(function(){
	$('.prev').css('display','none');
	$('.prow').data('pos',0);
	$('.next').click(function(){
		$(this).parent().find('ul').stop(true, true);
		$('.prev').css('display','block');
		pos=$('.prow').data('pos');
		pos++;
		premi=$('.pscroller ul li:nth-child('+(pos+1)+')').find('.premi').html();
		$('.catpremi').attr('id','premi'+premi);
		premilloc=$('.pscroller ul li:nth-child('+(pos+1)+')').find('.premilloc').html();
		$('.catpremi h2').html(premilloc);
		nom=$('.pscroller ul li:nth-child('+(pos+1)+')').find('.nom').html();
		$('.catpremi p').html(nom);
		titol=$('.pscroller ul li:nth-child('+(pos+1)+')').find('.titol').html();
		$('.pdetails h2').html(titol);
		lloc=$('.pscroller ul li:nth-child('+(pos+1)+')').find('.lloc').html();
		$('.pdetails h3').html(lloc);
		entradeta=$('.pscroller ul li:nth-child('+(pos+1)+')').find('.entradeta').html();
		$('.pdetails p').html(entradeta);
		if(pos==5){
			$(this).css('display','none');
		}
		$('.prow').data('pos',pos);
		$('.prow ul').animate({
			marginLeft: -pos*300+"px"
		},500);
		return false;
	});
	$('.prev').click(function(){
		$(this).parent().find('ul').stop(true, true);
		$('.next').css('display','block');
		pos=$('.prow').data('pos');
		pos--;
		premi=$('.pscroller ul li:nth-child('+(pos+1)+')').find('.premi').html();
		$('.catpremi').attr('id','premi'+premi);
		premilloc=$('.pscroller ul li:nth-child('+(pos+1)+')').find('.premilloc').html();
		$('.catpremi h2').html(premilloc);
		nom=$('.pscroller ul li:nth-child('+(pos+1)+')').find('.nom').html();
		$('.catpremi p').html(nom);
		titol=$('.pscroller ul li:nth-child('+(pos+1)+')').find('.titol').html();
		$('.pdetails h2').html(titol);
		lloc=$('.pscroller ul li:nth-child('+(pos+1)+')').find('.lloc').html();
		$('.pdetails h3').html(lloc);
		entradeta=$('.pscroller ul li:nth-child('+(pos+1)+')').find('.entradeta').html();
		$('.pdetails p').html(entradeta);
		if(pos==0){
			$(this).css('display','none');
		}
		$('.prow').data('pos',pos);
		$(this).parent().find('ul').animate({
			marginLeft: -pos*300+"px"
		},500);
		return false;
	});
});	
}
