function calendar_OpenPhoto(el,h1El)
{
	var nsrc=document.getElementById(el).src.replace('.jpg','_orig.jpg');
	var win=window.open('../../web_pages/photoview.aspx?img='+nsrc+'&title='+
		document.getElementById(h1El).innerHTML,'',
		'resizable=1,menubar=0,toolbar=0,scrollbars=1,width='+screen.availWidth+',height='+screen.availHeight+
		'innerWidth='+screen.availWidth+',innerHeight='+screen.availHeight+',status=0');
	win.moveTo(0,0);
}

function gallery_OpenPhoto(nsrc,title)
{
	var win=window.open('../../web_pages/photoview.aspx?img='+nsrc+'&title='+
		title,'','resizable=1,menubar=0,toolbar=0,scrollbars=1,width='+screen.availWidth+',height='+screen.availHeight+
		'innerWidth='+screen.availWidth+',innerHeight='+screen.availHeight+',status=0');
	win.moveTo(0,0);
}