function AbrirVentanaFlotante(pstr_idcapa,pstr_ancho){
	if (document.all)
		document.getElementById('div_mascara').style.height = document.body.offsetHeight;
	else
		document.getElementById('div_mascara').style.height = document.body.parentNode.scrollHeight+'px';
		
	MostrarCapa('div_mascara','block');
	MostrarCapa(pstr_idcapa,'block');
	document.getElementById(pstr_idcapa).style.width=pstr_ancho;
}

function CerrarVentanaFlotante(pstr_idcapa){
	OcultarCapa('div_mascara');
	OcultarCapa(pstr_idcapa);
}	

function MostrarCapa(pstr_capa,pstr_tipodisplay){
	document.getElementById(pstr_capa).style.display=pstr_tipodisplay;
	document.getElementById(pstr_capa).style.visible="visible";	
}

function OcultarCapa(pstr_capa){
	document.getElementById(pstr_capa).style.display="none";
	document.getElementById(pstr_capa).style.visible="none";	
}