oStatus=window.status;

function ShowStatus(theMess){
 if (document.entryform){
  if (document.entryform.DisplayStatus){
   document.entryform.DisplayStatus.value=theMess;
  }
 }
 oStatus = window.status;
 window.status = theMess;
 return true;
}

function RestoreStatus(){
 if (document.entryform){
  if (document.entryform.DisplayStatus){
   document.entryform.DisplayStatus.value=oStatus;
  }
 }
 window.status = oStatus;
 return true;
}

function PictureWin(theImage) {
	if (!window.Img_window||Img_window.closed) { 
		Img_window = window.open(theImage,"Imgw","width=575,height=400"); 
	}else{
		Img_window.location =theImage;
		Img_window.focus();
	}	
 return false;
}
