function viewLayer(id){
  this.hidePubAndSWF();
this.oMask = document.getElementById("alphalayer");
  this.oMask.style.height = document.documentElement.scrollHeight + "px";
  this.oMask.style.width = document.documentElement.scrollWidth + "px";  
  this.oMask.style.visibility = "visible";
  this.oMask.style.display = "";
  
  //reload iframe first
  //document.getElementById("framedenuncia").src="http://espacio.jif.es/SSpace/$M=sendinappropiate";
  
	oMsgBox = document.getElementById(id);	
	try{
		if(navigator.appName.indexOf("Microsoft") != -1){
			if(typeof document.body.style.maxHeight != "undefined"){
				//explorer 7
				oMsgBox.style.left = Math.floor((( document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.clientWidth ) - 964)/2) + "px";
				oMsgBox.style.top = 100 + (document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) + "px";		
			}else{
				oMsgBox.style.left = Math.floor((( document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.clientWidth )-964)/2) + "px";
				oMsgBox.style.top = 100 + (document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) + "px";	
			}
		}else{
			oMsgBox.style.left = Math.floor((( document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.clientWidth ) - 964)/2) + "px";
			oMsgBox.style.top = 100 + (document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) + "px";		
		}
	}catch(ee){ }

	oMsgBox.style.visibility = "visible";
	oMsgBox.style.display = "block";	


}        

function closeLayer(id){
  this.showPubAndSWF();
  
	this.oMask = document.getElementById("alphalayer");

	this.oMask.style.visibility = "hidden";
  this.oMask.style.display = "none";

	document.getElementById(id).style.visibility = "hidden";
	document.getElementById(id).style.display = "none";
}       

function showConditions(link_url){  
  window.open(link_url, "", "width=" + screen.availWidth +",height=" + screen.availHeight +",resizable=no,scrollbars=yes,menubar=no,toolbar=no,directories=no,location=no,status=no");  
  
  return false; 
}

function hidePubAndSWF(){  
  var divs = document.getElementsByTagName("div");
  
  for (var i=0;i<divs.length;i++){
    if (divs[i].className.indexOf("banner")>=0||divs[i].className.indexOf("roba")>=0||divs[i].className.indexOf("video")>=0){
      divs[i].style.visibility="hidden";
    }
  }  
}

function showPubAndSWF(){  
  var divs = document.getElementsByTagName("div");
    
  for (var i=0;i<divs.length;i++){
    if (divs[i].className.indexOf("banner")>=0||divs[i].className.indexOf("roba")>=0||divs[i].className.indexOf("video")>=0){
      divs[i].style.visibility="visible";
    }
  }
}
