function returnToPrev(cur_url){
	if(cur_url.indexOf('cart.php') !== -1){
		history.back();
	}else{
		document.location.href = "/home.php";
	}
}
