
// ----- FOTO ----- //

function amplia(img){
	if(arguments[2]!="" && arguments[3]!=""){
		width=arguments[2];
		height=arguments[3];
	}
	else{
		width=600;
		height=600;
	}
	
	if(arguments[1] != "")
		titulo = arguments[1];
	else
		titulo = "QUATRO RODAS";

	janela = window.open('','foto','width='+width+',height='+height+',top=0,left=0,scrollbars=no,status=no,menubars=no,location=no');
	janela.document.open();
	janela.document.write('<html><head><'+'scri'+'pt>function resize() {i=20; if (navigator.appName == \'Netscape\') i=5;if (document.images[1]) window.resizeTo(document.images[1].width +10, document.images[1].height+140-i);self.focus();}</s'+'cript'+'>');
	janela.document.write('<title>'+titulo+'</title>');
	janela.document.write('<style type="text/css"><!--@import url("/css/popup.css");--></style>');
	janela.document.write('</head><body topmargin=0 leftmargin=0 marginwidth=0 rightmargin=0 bgcolor="#000000" onload="resize();">');
	janela.document.write('<h1><img src="/css/imagem/logo_topo_popup.gif"></h1>');
	janela.document.write('<h2><img src="'+img+'" alt="'+titulo+'" title="" /></h2>');
	janela.document.write('<p>'+titulo+'</p>');
	janela.document.write('</body></html>');
	janela.document.title=titulo;
	janela.document.close();
	janela.focus()
}

// - FIM FOTO ----- //
