//------------------------------
function getPhotoThumb(strId,strurl){
//------------------------------
	if ($('idPhotoThumb')) {
//  	$('idPhotoThumb').style.width = '240px';
  	$('idPhotoThumb').style.left = $(strId).offsetLeft + $(strId).width + 'px';
  	$('idPhotoThumb').style.top = $(strId).offsetTop + $(strId).height + 'px';
	  $('idPhotoThumb').src = strurl;
   	$('idPhotoThumb').style.display = 'block';
  }
}
//------------------------------
function clearPhotoThumb(){
//------------------------------
	if ($('idPhotoThumb')) {
//  	$('idPhotoThumb').style.width = '35px';
  	$('idPhotoThumb').src = '/images/ajaxwait.gif';
	  $('idPhotoThumb').style.display = 'none';
  }
}