$(document).ready(function(){
configureExcludedGoods.load();
});



configureExcludedGoods={


	load: function()
	{
		$("#insuranceForm .customerTest a").click(function(){configureExcludedGoods.click(); return false;}); //click handler
		var submitDiv=$("#insuranceForm .pop-upField .submit");
		if (submitDiv[0])
		{
			var button=document.createElement("input");
			button.type="button";
			button.value="close";
			button.style.marginRight="10px";
			button.onclick=function(){$("#insuranceForm .pop-upField").hide();};
			submitDiv[0].appendChild(button);
		}
		
	},
	
	click: function()
	{
		$("#insuranceForm .pop-upField").show();
	}
	
	
	
	
};
