// JavaScript Document
function showPic (whichpic) { 
	if (document.getElementById) { 
		//document.getElementById('placeholder').src = whichpic.href;
		document.getElementById('placeholder').src = whichpic.name;
		//document.getElementById('placeholderBig').href = whichpic.name;		
		if (whichpic.title) { 
			document.getElementById('desc').childNodes[0].nodeValue = whichpic.title;} 
		else { 
			document.getElementById('desc').childNodes[0].nodeValue = whichpic.childNodes[0].nodeValue; } 
		return false; 
	} else { 
		return true; 
	} 
}

function openPhotoWindowStd(theURL) {
  window.open(theURL,'Photo','width=840,height=570,menubar=no,toolbar=no,resizable=yes');
  window.blur()
}

function openImageWindowPar(theURL,theDimensions) {
  //window.open(theURL,'Image','width=840,height=570,menubar=no,toolbar=no,resizable=yes');
  window.open(theURL,'Image',theDimensions & ',menubar=no,toolbar=no,resizable=yes');
  window.blur()
}