function blank(path) {	mywindow = window.open(path,'mywindow','width=800,height=500,status=no,menubar=no,menu=no,resizable=yes,scrollbars=no');		mywindow.focus();	return false;}// JavaScript Document//var imageTest = new Image();/*function showPic (whichpic) {	if (document.getElementById) {		document.getElementById('placeholder').src = "";						//imageTest.src = whichpic.href;		//imageTest.onload = function() {			document.getElementById('placeholder').src = whichpic.href;		//};			if (whichpic.title) {			document.getElementById('desc').innerHTML = "Caption: "+whichpic.title;		} else {			document.getElementById('desc').innerHTML = "";		}		return false;		} else {		return true;	}}*/imageTest = new Image();function showPic (whichpic) {	if (document.getElementById) {		document.getElementById('placeholder').src = "";						imageTest.src = whichpic.href;		//alert(imageTest.src);					if (whichpic.title) {			document.getElementById('desc').innerHTML = whichpic.title;		} else {			document.getElementById('desc').innerHTML = "";		}		return false;		} else {		return true;	}}imageTest.onload = function() {	//alert("loaded");	document.getElementById('placeholder').src = imageTest.src;};