// Image Swap
function showPic (whichpic) { 
	if (document.getElementById) { 
		document.getElementById('placeholder').src = whichpic.href; 
		document.getElementById('popuplink').href = whichpic.href; 
		document.getElementById('popuplink').className = whichpic.className; 
		document.getElementById('popuplink').name = whichpic.name; 
		if (whichpic.title) { 
			document.getElementById('placeholder').alt = whichpic.title; 
		} 
		return false; 
	} else { 
		return true; 
	} 
}
// Popup
function popUp (thisURL) { 
	if (document.getElementById) { 
		width = thisURL.className;
		height = thisURL.name;
		thislink = thisURL.href.replace("1", "3");
		window.open(thislink, "popUp", "resizable,width="+width+",height="+height+""); 
		return false; 
	} else { 
		return true; 
	} 
}