/*************************************
JavaScript produzido por Cezinha Gehm
Web: www.cezinha.com
Cliente: Sanduba Café Bistrô
Wev: www.sandubaeshow.com.br
Produzido em: 19/09/2003
*************************************/



/*************************************
Create PopUp Windows
*************************************/
function windows_popup( pagina, esquerda, topo, largura, altura ) { 
	var opcoes =	"toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizeable=no, "+
			 	"left="+esquerda+", top="+topo+", width="+largura+", height="+altura;
	window.open( pagina, "", opcoes ); 
} 




/*************************************
Create PopUp Windows Clean
*************************************/
function windows_clean(wURL,wNome,wtop,wleft,wwidth,wheight,retornar) 
{ 
  var wFeatures = "toolbar=no,location=no,directories=no"+
                  ",status=no,menubar=no,scrollbars=no"+
                  ",resizeable=yes"; 
 //valores para posicao de topo, esquerda, largura e altura   
  if(wtop != "") wFeatures = wFeatures + ",top="+wtop;
  if(wleft != "") wFeatures = wFeatures + ",left="+wleft;
  if(wwidth != "") wFeatures = wFeatures + ",width="+wwidth;
  if(wheight != "") wFeatures = wFeatures + ",height="+wheight;
 //criacao da janela
  minhajanela = window.open(wURL,wNome,wFeatures); 
  if(retornar) return minhajanela;
} 

function CriaJanelaScroll(wURL,wNome,wtop,wleft,wwidth,wheight,retornar) 
{ 
  var wFeatures = "toolbar=no,location=no,directories=no"+
                  ",status=no,menubar=no,scrollbars=yes"+
                  ",resizeable=yes"; 
 //valores para posicao de topo, esquerda, largura e altura   
  if(wtop != "") wFeatures = wFeatures + ",top="+wtop;
  if(wleft != "") wFeatures = wFeatures + ",left="+wleft;
  if(wwidth != "") wFeatures = wFeatures + ",width="+wwidth;
  if(wheight != "") wFeatures = wFeatures + ",height="+wheight;
 //criacao da janela
  minhajanela = window.open(wURL,wNome,wFeatures); 
  if(retornar) return minhajanela;
} 

function CriaJanelaNormal(wURL,wNome,wtop,wleft,wwidth,wheight,retornar) 
{ 
  var wFeatures = "toolbar=yes,location=no,directories=yes"+
                  ",status=no,menubar=yes,scrollbars=yes"+
                  ",resizeable=yes"; 
 //valores para posicao de topo, esquerda, largura e altura   
  if(wtop != "") wFeatures = wFeatures + ",top="+wtop;
  if(wleft != "") wFeatures = wFeatures + ",left="+wleft;
  if(wwidth != "") wFeatures = wFeatures + ",width="+wwidth;
  if(wheight != "") wFeatures = wFeatures + ",height="+wheight;
 //criacao da janela
  minhajanela = window.open(wURL,wNome,wFeatures); 
  if(retornar) return minhajanela;
} 
//------------------------------------------------------------------------
