function showPic( whichpic ) {

	if ( document.getElementById ) {
		document.getElementById( 'placeholder' ).src = whichpic.href;
	
		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;
		
	}
	
}

var popUpWin=0;

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=1,scrollbars=1,location=0,statusbar=1,menubar=1,resizable=0,width=790,height=600,left = 245,top = 212');");
}
