// JavaScript Document
document.writeln('<script language="javascript" type="text/javascript" src="js/flashobject.js"></script>');

var wndPhoto = new Object();
wndPhoto.closed = true;

function openPhoto(url, tipo) {
	if (tipo == 1 || typeof(tipo) == "undefined") {
		var width = 500;
		var height = 375;
	}
	
	if (tipo == 2) {
		var width = 500;
		var height = 280;
	}
	
	if (!wndPhoto.closed) wndPhoto.close();
	wndPhoto = window.open("", "wndPhoto", "width=" + width + ", height=" + height);
	
	wndPhoto.document.clear();
	wndPhoto.document.writeln('<body style="margin: 0px; background: url(\'./media/bg_00.gif\');">');
	wndPhoto.document.writeln('<table width="' + width + '" height="' + height + '" border="0" cellpadding="0" cellspacing="0">');
	wndPhoto.document.writeln('<tr>');
	wndPhoto.document.writeln('<td align="center" valign="middle">');
	wndPhoto.document.writeln('<img src="' + url + '">');
	wndPhoto.document.writeln('</td>');
	wndPhoto.document.writeln('</tr>');
	wndPhoto.document.writeln('</table>');
	wndPhoto.document.writeln('</body>');
	wndPhoto.document.close();
}