/**
 *
 * @access public
 * @return void
 **/
function UpdateCart(pid){
	obj = document.getElementById(pid);
    window.location="handlecart.php?update="+pid+"&count="+obj.value;
}

function init_resize() {
   obj = document.getElementById('contentpanel');

   if(obj.offsetHeight){
			fHeight = obj.offsetHeight;
			remaining = document.documentElement.clientHeight - 217;

	}else if(obj.scrollHeight){
			fHeight = obj.scrollHeight;
			remaining = window.innerHeight - 217;
   }
   if(remaining > fHeight) obj.style.height = remaining+"px";
}

window.addEvent('domready', init_resize);
