function addToShorlist(pid,pname,form2)
{	
	//sid		= form2.size.options[form2.size.selectedIndex].value;
	//sname	= form2.size.options[form2.size.selectedIndex].text;

	//cid		= form2.color.options[form2.color.selectedIndex].value;
	//cname	= form2.color.options[form2.color.selectedIndex].text;
	
	pname	= pname.replace('_', '\'');

	r = document.getElementById("update_cart");
	r.src = "_transit.php?pid=" + pid + "&shortlist_action=add";
	alert("item is added in shortlist");
	history.go(0);
}

function removeFromShortlist(form2)
{
	form2.action = "_transit.php";
	form2.submit();
}