// pop up window to display help (helpitem = Number of help item);


helpme = new Array("Name of Purchaser (Required)","Your name, as the person ordering the goods","Email (Required)","Your email address so we are able to contact you if necessary","Delivery & Billing Address (Required)","The delivery address for the goods. If this is a gift, include the name of the recipient as well, and fill in your address below in the Billing Address field","Country (Required)","The country for the delivery address","Billing Address","If the goods ordered are a gift or are being sent to a different address from your own, fill in your address here as the person ordering","Country","The country for the billing address","Phone No. (Required)","Your phone number in case we need to contact you by phone","Fax No.","Your fax number in case we need to contact you by fax","Credit Card Type (Required)","Choose the type of credit card you wish to pay by, we accept Visa and Mastercard","Credit Card Expiry (Required)","Your credit card expiry date should be entered here","Credit Card Number (Required)","Your credit card number should be entered here","Your Name as on Credit Card (Required)","Your name as displayed on your credit card should be entered here","Comments or Requests","If you have any special requests, questions, or comments about the web site or your order, enter them here","How did you find our web site?","A small survey to find out how you got to our web site","Gift card message","If this is a gift you can include a free gift card with your purchase","No items in your basket","You need to 'buy' an item to add it to your basket<p>Cookies are required to use this shopping cart, if your browser is set not to accept cookies you will need change the setting to 'accept cookies' for this cart to work correctly.<br>Go to the 'help' section in your browser for advice");




function showhelp(helpitem) {
	pos=(helpitem-1)*2
	title=helpme[pos];
	help=helpme[pos+1];
	var content="<html><head><title>"+title+"</title><STYLE TYPE='text/css'>A:link {font-family: 'Arial'; font-size: 8pt; color: #000000;}A:link:hover {color: #0099CC;}.desc {font-family: 'Arial'; font-size: 12pt; color: #ffffff;  background-color: #0099CC;}a. {font-family: 'Arial'; font-size: 8pt; color: #000000;}table {font-family: 'Arial'; font-size: 9pt; color: #000000;}.approx{font-family: 'Arial'; font-size: 9pt; color: #000000; margin-left: 10px; margin-right: 10px;}</STYLE></head><body onBlur='window.close()' bgcolor='#ffffff' text='#000000' leftmargin='0' topmargin='0' marginheight='0' marginwidth='0'><center><div class='desc'><br>"+title+"<br><br></div><br><br><div class='approx'>"+help+"</div><br><a href='javascript:window.close()'>CLOSE WINDOW</a></center></body></html>"
	props=window.open("","poppage","height=300,width=400,left=200,top=50,toolbars=0,scrollbars=0,location=0,statusbars=0,menubars=0,resizable=1");
	props.document.write(content)
	props.focus()
	props.document.close()
}
