function muestra(obj) {
 if (document.layers) obj.visibility = "show";
 else if (document.all) document.getElementById(obj).style.display = "block";
}

function oculta(obj) {
 if (document.layers) obj.visibility = "hide";
 else if (document.all) document.getElementById(obj).style.display="none";
}
function LimpiaNumero (valor) {
	valor = parseInt(valor) 
	if (isNaN(valor)) return ""; 
	else return valor;
}

function openWin( winHeight, winWidth, picSrc )
{
newWin = window.open('', '', 'height='+ winHeight + ',width='+ winWidth + 'toolbars=no, scrollbars=no' );
newWin.document.write("<head><title>Tienda Virtual</title><style type='text/css'> body {margin-left: 0px;	margin-top: 0px; margin-right: 0px;	margin-bottom: 0px; background-color: #000000;}</style></head>");	
newWin.document.write("<body margin-left'0px' margin-top='0px' margin-right='0px' margin-bottom='0px'>");
newWin.document.write("<p align=center>");
newWin.document.write("<img src=" + picSrc + "><br>");
newWin.document.write("<br><input type='button' value='Cerrar' class='boton' onclick='JavaScript:window.close()'>");
newWin.document.write("</p>");
newWin.document.write("</body>");
}

