function abrir_janela(theURL,winName,features) { //v2.0
  retVal=window.open(theURL,winName,features);
  centraliza_janela(retVal);
  return retVal;
};

function abrir_fotos(Foto){
	URL='abre_fotos.php?codigo='+Foto;
	j=abrir_janela(URL,'Foto','menubar=no,scrollbars=no,resizable=no,width=680,height=515');
};
function abrir_produto(Foto){
	URL='abre_fotos.php?codigo='+Foto;
	j=abrir_janela(URL,'Foto','menubar=no,scrollbars=no,resizable=no,width=680,height=515');
};

function centraliza_janela(janela){
	W=Math.round( ((screen.availWidth - 683) / 2) );
	H=Math.round( ((screen.availHeight - 480) / 2) );
	janela.moveTo(W,H);
};
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
function abrir_janela1(theURL,winName,features) { //v2.0
  retVal=window.open(theURL,winName,features);
  centraliza_janela1(retVal);
  return retVal;
};

	function abrir_produto(Produto){
	URL='abre_produto.php?pagina=1&codigo='+Produto;
	j=abrir_janela1(URL,'Foto','menubar=no,scrollbars=no,resizable=no,width=450,height=360');
};

function centraliza_janela1(janela1){
	W=Math.round( ((screen.availWidth - 450) / 2) );
	H=Math.round( ((screen.availHeight - 360) / 2) );
	janela1.moveTo(W,H);
};

function lista_categoria(categoria){
url="catalago.php?exibe=true&categoria="+String(categoria);
location.href=url;
};
