function setShopInfo(shop_id){
    var requrl = "rating.php?shop_id="+shop_id;
    var html = $.ajax({
      url: requrl,
      async: false
    }).responseText;
    
//    document.write(html);
}

function sendRating(is_rate){
	with(document.cvform){
		if(is_rate){
			israte.value = "1";
		}else{
			israte.value = "0";
		}
		action="/rating.php";
		submit();
	}
}

