// MIX net.business 
//foto.js
var win = null;
function foto(image,width,height,name,description){
   if (win && win.open) win.close()
        var widthA = width + 30
		var heightA = height + 95
		if (width < 100 ) width = 100
        win = window.open('', 'fotowindow', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=auto,border=0,resizable=no,width='+widthA+',height='+heightA+',copyhistory=no,top=20');
		doc = win.document;
        doc.open('text/html', 'replace');
        doc.write('<html><head><title>'+name+'</title></head>\n');
		doc.write('<body bgcolor=\"#ADACA4\" link=\"#000000\" text=\"#ffffff\">');
		doc.write('<table align="center" height="100%" width="100%"><tr align="center" valign="center"><td>');
		doc.write('<img src="'+image+'" alt=\"Foto\" border=1><br>');
		if (name != '') doc.write('<font face="Comic Sans MS,arial" size=2>'+name+'<br></font>');
		if (description != '') doc.write('<font face="arial" size=2>'+description+'<br></font>');
		doc.write('<center><a href=\"javascript:window.close()\"><img src=\"http://www.garagemdearte.com.br/layout/album_fechar.gif\" width=\"80\" height=\"20\" vspace=\"8\" alt=\"Fechar esta Janela\" border=\"0\"></a></center>');
		doc.write('</td></tr></table></body></html>');
        doc.close();
}
