

function resize(){

obj=document.getElementById('cart');
//alert(obj);
if(obj.style.width=="300px"){
	obj.style.width="210px";
	obj.style.right="";
	obj.style.position='relative';
}
else{
	obj.style.width="300px";
	obj.style.right="5px";
	obj.style.position='absolute';
	}
//alert(obj.styles);

}