﻿if(typeof cms == 'undefined') { cms = {};}

cms.pageRate = function(IsVote, URL, Rate, Id, RateTarget){ 
	jQuery(RateTarget).click(function(){
		jQuery.get(URL, {'id':Id,'rate':Rate},
			function(data){
			    if(data =='Success'){
					location.reload(true);
				}
				else if(data =='Fail'){
				    alert('your vote is not successful, please try again later.');		
				}
			});					
	});											
};
                      