function clearForm (field,label) {
	
	if (field.value == label) {
		
		field.value = "";
		
	}
	
}

function fillForm (field,label) {
	
	if (field.value.length == 0) {
		
		field.value = label;
		
	}
	
}

function memberDetailsPopup (url,window_name) {
	
	window.open(url,window_name,"width=500,height=400,resizable=no,scrollbars=yes");
	
}

function popUp640 (url,window_name) {
	
	window.open(url,window_name,"width=640,height=480,resizable=no,scrollbars=yes");
	
}

function GetImage(img){
  imgFullSize= new Image();

  imgFullSize.src=(img);

  CheckImage(img);
}

function CheckImage(img){
  if((imgFullSize.width!=0)&&(imgFullSize.height!=0)){
    ViewImage(img);
  }
  else{
    TryAgain="CheckImage('"+img+"')";
    Interval=setTimeout(TryAgain,20);
  }
}

function ViewImage(img){
	ImageWidth = ""
	ImageHeight = ""
	ImageDef = ""
  ImageWidth=imgFullSize.width+20;
  ImageHeight=imgFullSize.height+20;
	ImageDef="width="+ImageWidth+",height="+ImageHeight+"tool=no,status=no";
  Display=window.open(img,"",ImageDef);
}