// JavaScript Document

function searchPage(searchRecord){
	
	$.get("../search/index.php", {s:searchRecord,CONFIGCALL:'CONFIGCALL'},function(val2)
		{
			$("#viewPage").html(val2);				
		});
	}
	
	
	function changePrice(pid, id){
	alert(pid+"dfdfdf"+id);
	$.get("rate.php", {pid:pid,id:id,CONFIGCALL:'CONFIGCALL'},function(val2)
		{
			alert("aaaaaaa");
			$("#price-"+id).html(val2);				
		});
	}
