function ChooseWSTProduct()    {        // pass proper sku to LoadItem function        var index = document.LoadItem.cboWebsiteTonightOffers.selectedIndex;        var sku = document.LoadItem.cboWebsiteTonightOffers.options[index].value;                LoadItem(sku);    }function ChooseOnePageProduct()    {        var index = document.LoadItem.cboOnePageOptions.selectedIndex;        var sku = document.LoadItem.cboOnePageOptions.options[index].value;                LoadItem(sku);    }	function LoadItem(sSku)	{		document.LoadItem.sku_1.value = sSku;		document.LoadItem.submit();	}    function Popup(image,w,h)     {        var option = "top=25,left=25,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+w+",height="+h;        window.open(image, "", option);    }