//window.defaultStatus = "King\'s Own";

function WinS(aMessage) {
	window.status = aMessage;
}
function WinOut() {
	window.status = "";
}

function expandPhoto(imgPath,descInfo) {
	NewPath = "popGraphic.htm?path=" + imgPath + "&desc=" + descInfo
		var obj = window.open(NewPath,"graphical","dependent=yes,toolbar=no,menubar=no,status=no,location=no,resizable=yes,scrollbars=no,left=50,top=50,screenx=50,screeny=50,width=500,height=500");
	obj.focus();	
}

function expandPhotoSizer(imgPath,descInfo,intW,intH) {
	NewPath = "popGraphic.htm?path=" + imgPath + "&desc=" + descInfo
	winProp = "dependent=yes,toolbar=no,menubar=no,status=no,location=no,resizable=yes,scrollbars=no,left=50,top=50,screenx=50,screeny=50,width=" + (intW + 20) + ",height=" + (intH + 25)
		var obj = window.open(NewPath,"graphical",winProp);
	obj.focus();	
}
