function PhotoGallery(URL)                                             
{
	var lastIdx = URL.lastIndexOf("/Photo+Gallery");
	var cURL = URL.substring(0, lastIdx);
	var base= "http://www.rwc2003.irb.com/PhotoGallery/EN_PhotoGallery.aspx?path=" + cURL;

	 var CompleteURL = URL + ".htm";
	window.open(base,"_blank","channelmode=no,directories=no,fullscreen=no,height=550,location=no,menubar=no,resizable=no,scrollbars=no,status=no,titlebar=no,toolbar=no,width=670");
	//window.open(URL,"_blank","channelmode=no,directories=no,fullscreen=no,height=550,location=no,menubar=no,resizable=no,scrollbars=no,status=no,titlebar=no,toolbar=no,width=670");
}
function ClosePhotoGallery()                                             
{
	window.close();
}