function imagePopup(url){
	if(typeof(url)!="object"){
		window._w = window.open("","","width=30,height=30,scrollbars=no,resizable=yes");
		window._w.document.open();
		window._w.document.write('<html><body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0"><center><table height="100%"><tr><td align="center" valign="middle"><a href="javascript:window.close();"><img alt="Click to close this window" border="0" src="'+url+'" onLoad="opener.imagePopup(this);"></a><br><a href="javascript:window.close();"><font face="Verdana" size="2" color="#3366CC"><b>Click to close</font></b></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+80);
	}
}

function getPath(url) {
	return (url.substring(url.lastIndexOf("/")+1,url.length));
}


function apri(foto,titolo,dimensioni){
	foto="immagini/foto/"+foto+".gif";
	imagePopup(foto);
}


function aprijpg(foto,titolo,dimensioni){
	foto="immagini/foto/"+foto+".jpg";
	imagePopup(foto);
}

function apri2(foto){
	alert(foto);
	//imagePopup(foto);
}

function openimage(foto){
	url = getPath(foto);
	url = "http://www.rallypassion.com/public/fotogallery/"+ url;
	imagePopup(url);
}
