/*MENU*/

function mostrar(id) {
	document.getElementById(id).style.display ='';
}
function ocultar(id) {
	document.getElementById(id).style.display ='none';
}


/*PRODUTOS*/
function abrir(dochtml, altura, largura) {
 windowTop = screen.height/2 - altura/2;
 windowLeft = screen.width/2 - largura/2;

window.open('pisos.foto.php?id='+ dochtml +'','_blank','scrollbars=no,toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,copyhistory=no,height='+ altura +',width='+ largura +',top='+ windowTop +',left='+ windowLeft +''); 

}
