   function openImage(url){
	if(typeof(url)!="object"){
		window._w = window.open("","","width=100,height=30,scrollbars=no,resizable=yes");
		window._w.document.open();
		window._w.document.write('<html><head><title>:: FESTIVAL PALCO DO ROCK :: </title></head><body topmargin="0" leftmargin="0" marginleft="0" marginheight="0"><center><table cellpadding="0" cellspacing="0" height="100%" width="100%"><tr><td align="center" valign="middle"><a href="javascript:window.close();"><img border="0" alt="Fechar" src="'+url+'" onLoad="opener.openImage(this);"></a></td></tr></table></center></body></html>');
		window._w.document.close();
		}
	else{
		if(document.layers)
			window._w.resizeTo(url.width,url.height);
		else
			window._w.resizeTo(url.width+25,url.height+60);
		}
	}
