// JavaScript Document
function init_eachprod(){
var thediv = ($GEBId("oneprod") || false);
	if(thediv == false) {
		thediv = $DCElem("div");
		thediv.id = "oneprod";
		thediv.style.position = "absolute";
		thediv.style.display = "none";
		$GEBTn("body").item(0).appendChild(thediv);
	}
}

function cleachprod(){
var el = $GEBId("oneprod");
	el.style.width=5;
	el.style.height=5;
	el.style.top=0;
	el.style.left=0;
	el.style.border="";
	el.style.backgroundColor="";
	el.style.display="none";
	el.innerHTML = ""; 
}


function walkprods(elem){ // mantem os divs absolutes corretos no resize - sites centralizados	
	
	if(IE)	iw=document.body.clientWidth;
	else iw=window.innerWidth;		
		
		iw2 = iw / 2;
		factor = IE ? (iw2 - 238) :  (iw2 - 246);
		lpos = factor+"px";
		$GEBId(elem).style.top = "118px";
		$GEBId(elem).style.left = lpos;	
	
}


function eachprod(addr){
	
	factor_height = IE ? "430" : "430";
	
	var thetext = '<div id="eaprod"><a href="javascript:cleachprod();"><b><sup>&raquo;</sup> Fechar</b></a></div><iframe src="'+addr+'" frameborder=0 scrolling=no width=500 height='+factor_height+'></iframe>';
	var el = $GEBId("oneprod");
	
	el.style.width="500px";	
	el.style.height = IE ? "auto" : "450px";
		walkprods("oneprod");	
	el.style.textAlign="";
	//el.style.paddingTop="20px";
	el.style.border="1px solid #0d726e";
	el.style.backgroundColor="#fff";
	el.style.display="";
	el.innerHTML = thetext;
	//intoView("toppage");
	
	
}
