function FormatPrice(value, formatStyle){
	try{
		if(value==".0000"){
			return 0
		}else{
			if(value.indexOf(".")!=-1){
				return (value).substring(0, (value).indexOf("."));
			}else{
				return value;
			}
		}
	}
	catch(e){
		alert(e.description)
	}
}