
// .: Version 1.4.0 :. //

function JSA_cweWindowPop_mostrar(IdMadriguera) {

	var id='Oculto_'+IdMadriguera;
	var oculto=document.getElementById(id);
	var div0=oculto.firstChild;
	var div1=div0.firstChild;

	div0.style.height=document.body.offsetHeight+'px';

	var h0=(document.all)?document.body.scrollTop:window.pageYOffset;

	var height=0;
	var h=parseInt(window.innerHeight+window.scrollMaxY);
	var sh=document.body.scrollHeight;

	if (document.body.scrollHeight)
		height=sh;
	else
		height=h;

	div0.style.position='absolute';
	div0.style.width=document.body.offsetWidth+'px';
	db=div0.firstChild;
	db.style.position='absolute';
	db.style.height=height+'px';
	db.style.width='100%';
	db.style.top='0px';
	db.style.left='0px';
	db.style.zIndex='90';

	document.body.insertBefore(div0,document.body.firstChild);

	var hrel= - (- (height/2)) - (div1.offsetHeight/2);
		if (hrel <= 0)
			hrel=100;
	var fh = h0 - ( - hrel);
	dcw=db.nextSibling;

	dcw.style.marginTop=Math.round(fh)+'px';
	dcw.style.position='relative';
	dcw.style.zIndex='100';

}

function JSA_cweWindowPop_cerrar(IdMadriguera, IdWindow) {
	var id='Oculto_'+IdMadriguera;
	var oculto=document.getElementById(id);
	var div0=document.getElementById(IdWindow);

	oculto.appendChild(div0);
}


