function AddToBasket()
{prop_id=document.getElementById("write_prop_id").value;url=document.getElementById("root_url").value;basket_button_1='<img src="'+root_url+'img/add.jpg" onmouseover="this.src=\''+root_url+'img/add_over.jpg\'" onmouseout="this.src=\''+root_url+'img/add.jpg\'"  alt="" />';basket_button_2='<img src="'+root_url+'img/basket.gif" alt="" />';document.getElementById("add_basket_button").innerHTML=basket_button_2;$.post('/services/forms/boxAction.php',{id:prop_id},function(returned_data)
{document.getElementById("add_basket_button").innerHTML=basket_button_1;$.post('/services/forms/prop_from_session.php',{id:prop_id},function(returned_data)
{if(returned_data>0)
document.getElementById("boxcount").innerHTML=returned_data;})})}
