

function getshopcart()
{
	
	
	//document.getElementById("mycart").style.display='block';

	document.getElementById("mycart").style.visibility='visible';
}


function removeshopcart()
{
	//document.getElementById("mycart").style.display='none';
	document.getElementById("mycart").style.visibility='hidden';
	
}
