function fullscreen(){
	Width=screen.availWidth;
	Height=screen.availHeight;
	window.open(document.URL, '', 
	'toolbar=no,location=no,directories=no,status=no,menubar=no,'+
	'scrollbars=1,resizable=no,copyhistory=1,width='+Width+','+
	'height='+Height+',top=0,left=0','replace');
	} 

function changebackgroundParrilla(idParrilla){
	var parrilla = document.getElementById(idParrilla).style;
	
	fragmentoTexto = idParrilla.split('_');
	var parrillaAct = fragmentoTexto[0];
	for(i=1;i<=8;i++){
		parrillas = parrillaAct+'_content'+i;
		document.getElementById(parrillas).style.backgroundImage="url('images/bg_parrillas.jpg')";
		document.getElementById(parrillas).style.backgroundColor = '';
		}
	
	parrilla.backgroundColor = '#59a6fa';
	parrilla.backgroundImage='';
		
	}

function showHide(obj){	
	//alert(obj);
	var div = document.getElementById(obj);
	if (div.style.display == 'none'){
		for(i=1;i<=30;i++){
			//alert('div_answer'+i);
			var divTemp = document.getElementById('div_answer'+i);
			if(divTemp != null)	divTemp.style.display = 'none';
			}
		div.style.display = '';
		//document.location.href='#'+obj;
		}
	else{
		div.style.display = 'none';
		//document.location.href='#main';
		}
	}

function showDet(id,visibility){
	setVisibility(id,visibility);
	//$('#add').load('DIVadd.php');
	}
	
function setVisibility(id, visibility) {
	document.getElementById(id).style.display = visibility;
	}
	
function changeContentwrapperPHP($content,$id){
	if($content=='Noticias') $('#contentwrapper').load('Noticias/index.php?id='+$id);
	if($content=='LoUltimo') $('#contentwrapper').load('LoUltimo/index.php?id='+$id);
	if($content=='SabQue') $('#contentwrapper').load('SabQue/index.php?id='+$id);
	}
	
function changeContentwrapper($content){ 
	if($content=='parrillajoven') $('#contentwrapper').load('inc/Servicios/parrillajoven.php');
	if($content=='Home') $('#contentwrapper').load('inc/Home.php');
	if($content=='Contacto') $('#contentwrapper').load('inc/Contacto.php');
	if($content=='QuienesSomos') $('#contentwrapper').load('inc/QuienesSomos.php');
	if($content=='AvisosLegales') $('#contentwrapper').load('inc/AvisosLegales.php');
	if($content=='Publicidad') $('#contentwrapper').load('inc/Publicidad.php');
	if($content=='DistribuidoresOficiales') $('#contentwrapper').load('inc/DistribuidoresOficiales/index.php');
	//Noticias
	if($content=='NoticiasListaCompleta') $('#contentwrapper').load('Noticias/ListaCompleta.php');
	//SabQue
	if($content=='SabQueListaCompleta') $('#contentwrapper').load('SabQue/ListaCompleta.php');
	//LoUltimo
	if($content == 'LoUltimoListaCompleta') $('#contentwrapper').load('LoUltimo/ListaCompleta.php');
	//Servicios
	if($content=='Servicios') $('#contentwrapper').load('inc/Servicios/index.php');

	}	
	
function newWindows(url, nombre, ancho, alto){
	xpos=(screen.width/2)-(ancho/2);
	ypos=(screen.height/2)-(alto/2);
	window.open(url,nombre,'resizable=yes,width='+ancho+',height='+alto+',left='+xpos+',top='+ypos+',statusbar=no, toolbar=yes, location=yes, menubar=no,scrollbars=yes');
	}
