<!--
function KC_FillPicWindow1(theWin,theName) {
 theWin.document.images["Image1"].src=theName;
 theWin.focus();
}

function KC_openPicWindow1(theName) { 
	PicName=theName;	
	window.status=PicName;	
	if (navigator.appName == "Netscape") {
		 WinName=window.open(PicName,'Image','width=720,height=592,screenX=0,screenY=0,resizable=1');
		 if(window.focus) {
		 	WinName.focus();
		 }

	} else {
 		WinName = window.open('ImageWin.htm','Image','width=300,height=300,screenX=0,screenY=0');
 		//WinName.onLoad = KC_FillPicWindow1(WinName,PicName);
		 window.setTimeout('KC_FillPicWindow1(WinName,PicName);',500);
	}
}
var theWin;
function PicPopup(imgname){
theWin=window.open(imgname,'picwin','width=640,height=480');
theWin.focus();
}
//-->
