 function digPv(id,type,title,image,url,rateid){
    var hurl='/pages/pv.jsp';
    var param_str = '';
 	param_str += 'id=' + id;
 	param_str += '&type=' + type;
 	param_str += '&title=' + title;
 	param_str += '&image=' + image;
 	param_str += '&url=' + url;
 	param_str += '&rateid=' + rateid;
 	var ajax = new Ajax.Request(
 						hurl,
 						{
 							method:'get',
 							parameters:param_str,
 							onComplete:function(originalRequest){
 								//alert('from='+from+'&seriesid='+seriesid);
 								//alert(originalRequest.responseText);
 							}
 						});
}
