function showretailerdetails(Customer, Address){
  		var intleft = screen.width / 2 - 200;
		var inttop = screen.height / 2 - 225;
		var urltoopen = "retailerlocatorresults.asp?id=" + Customer + "&add=" + Address
  		location.href = urltoopen;
  		//window.open (urltoopen,"new");
  	}
  	
  	function createretailerenquiry(Customer, Address){
  		var intleft = screen.width / 2 - 200;
		var inttop = screen.height / 2 - 225;
		var urltoopen = "retailer_enquiry.asp?id=" + Customer + "&add=" + Address
  		location.href = urltoopen;
  		//window.open (urltoopen,"new");
  	}