
	var addCartHtml = '';
	function showDropInControl(navUrl)
	{
	  if(xhReq == null) { xhReq = createXMLHttpRequest();}
	  xhReq.open('get', navUrl, true);
	  xhReq.onreadystatechange = onShowDropInControl;
	  xhReq.send(null); 
	}		
	
	function onShowDropInControl()
	{
	  if (xhReq.readyState != 4 || xhReq.status != 200){return;}
		if(xhReq !== null && xhReq.status == 200)
		{
			if(addCartHtml != '')
			{
				var lblBoxDescription = document.getElementById('ctl00_cphOnCommonMasterPage_Toysdetail1_ctl00_lblBoxDescription');
				lblBoxDescription.innerHTML = addCartHtml;
			}
		    var pnlDropInControl = document.getElementById('ctl00_cphOnCommonMasterPage_Toysdetail1_pnlDropInControl');
			pnlDropInControl.style.display = '';
			initboxv2();		
            mypipeseparator = document.getElementById("ctl00_lblCartSeparator");
            mypipeseparator.style.display = "none";
			var lblCartText = document.getElementById('ctl00_lblCartText');
			lblCartText.innerHTML = xhReq.responseText;
		}
	}
	
	function showWishListDropInControl(navUrl)
	{
		if(xhReq == null) { xhReq = createXMLHttpRequest();}
		xhReq.open('POST', navUrl, true);
	    xhReq.onreadystatechange = onShowWishListDropInControl;
		xhReq.send(null); 
	}
	
	function onShowWishListDropInControl()
	{
		if (xhReq.readyState != 4 || xhReq.status != 200){return;}
		if(xhReq !== null && xhReq.status == 200)
		{
			if(xhReq.responseText.indexOf(".aspx") > 0)
			{
				window.location = xhReq.responseText;
			}
			var hidAppRoot = document.getElementById('ctl00_cphOnCommonMasterPage_Toysdetail1_hidAppRoot');
			
			var hrefAddToWishlist = document.getElementById("<%=hrefAddToWishlist.ClientID %>");
			hrefAddToWishlist.innerHTML = "<img src='" + hidAppRoot.value + "toys/images/addedtowishlistbig.gif' style='border-width:0px;' />";
			
			var lblViewWishlist = document.getElementById("<%=lblViewWishlist.ClientID %>");
			lblViewWishlist.style.display = '';
			var lblBoxDescription = document.getElementById('ctl00_cphOnCommonMasterPage_Toysdetail1_ctl00_lblBoxDescription');
			if(addCartHtml == '')
			{
				addCartHtml = lblBoxDescription.innerHTML;
			}
			lblBoxDescription.innerHTML = "<TABLE cellSpacing=0 cellPadding=0 width=130 background=images/AddCartDrop.gif><TR><TD width=5></TD><TD class=smallblacktext vAlign=top width=120 height=130><BR><A href=\"" + hidAppRoot.value + "mywishlist\"><IMG src=\"images/btnAddToWLSmall.gif" + "\" border=0></a><BR><br>This item has been added to your wishlist<br><BR><br><CENTER><A href=\"" + hidAppRoot.value + "mywishlist\"><FONT face=verdana color=#0000cc size=1><U>view wishlist</U></FONT></A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A onclick=\"dismissboxv2();return false\" href=\"javascript:void(0)\"><FONT face=verdana color=#0000cc size=1><U>close</U></FONT></A></CENTER></TD><TD width=5></TD></TR></TABLE>";
		  var pnlDropInControl = document.getElementById('ctl00_cphOnCommonMasterPage_Toysdetail1_pnlDropInControl');
			pnlDropInControl.style.display = '';
			initboxv2();
		}
	}