// JavaScript Document

function openWindow(url) {
	var win=window.open(url,'newwindow','width=800,height=600,toolbar=yes,menubar=yes,location=yes,status=yes,scrollbars=yes,resizable=yes');
}

function openphotoWindow(url) {
	var win=window.open(url,'newwindow','width=640,height=480,toolbar=no,menubar=no,location=no,status=no,scrollbars=yes,resizable=yes');
}
/*thanks to Jeremy Keith's JavaScript Image Gallery, www.alistapart.com/articles/imagegallery/  */
 function showPic (whichpic) { 
	if (document.getElementById) { 
		   document.getElementById('placeholder').parentNode.className = "hidden";
   document.getElementById('longplaceholder').parentNode.className = "visible";
document.getElementById('placeholder').src = whichpic.href; 
		
		return false; 
	} else { 
		return true; 
	} 
}
 
function showlongPic (whichpic) {
  if (document.getElementById) {
   document.getElementById('longplaceholder').src = whichpic.href;
  
		return false; 
	} else { 
		return true; 
	} 
}