// JavaScript Document
function help2 ()
{
	if (document.getElementById('helpdiv').innerHTML != '&nbsp;')
	{
		var help_txt = '&nbsp;';
		
	} else {
		var help_txt = "<div id=\"help\"><div style=\"float:right\"><a onclick=\"javascript:window.open('https://www.paypal.com/uk/cgi-bin/webscr?cmd=xpt/popup/OLCWhatIsPayPal-outside','olcwhatispaypal','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, width=400, height=350');\" href=\"#\"><img alt=\"Acceptance Mark\" src=\"https://www.paypalobjects.com/en_US/i/logo/PayPal_mark_50x34.gif\" border=\"0\" /></a></div>"
		+"<h3>How to Order</h3>"
		+"<p><strong>Buy Online</strong><br />"
		+"You can order any of these CDs securely online by   clicking on the &quot;Add to Basket&quot; buttons. Your credit card information will be   submitted <a href=\"http://www.paypal.com\">PayPal</a>, and you can buy from us   even if you don't have a PayPal account.<br /></p>"
		+"<p>PayPal automatically encrypts your confidential   information in transit from your computer to ours using the Secure Sockets Layer   protocol (SSL) with an encryption key length of 128-bits (the highest level   commercially available).<br /><br />"
		+"<strong>By Post</strong><br />"
		+"Please send a cheque or postal   order including your name and address to:<br /><br />"
		+"Pindrop Music, The Covey, Towerhouse Lane, Wraxall, Somerset, BS48 1JR</p>"
	 +" </div></div>";
		
	}
	document.getElementById('helpdiv').innerHTML = help_txt;
}

function help()
{
	var text = "<div id=\"help\"><div style=\"float:right\"><a onclick=\"javascript:window.open('https:\/\/www.paypal.com\/uk\/cgi-bin\/webscr?cmd=xpt\/popup\/OLCWhatIsPayPal-outside','olcwhatispaypal','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, width=400, height=350');\" href=\"#\"><img alt=\"Acceptance Mark\" src=\"https:\/\/www.paypalobjects.com\/en_US\/i\/logo\/PayPal_mark_50x34.gif\" border=\"0\" \/><\/a><\/div>"
		+"<h3>How to Order<\/h3>"
		+"<p><strong>Buy Online</strong><br \/>"
		+"You can order any of these CDs securely online by   clicking on the &quot;Add to Basket&quot; buttons. Your credit card information will be   submitted <a href=\"http://www.paypal.com\">PayPal</a>, and you can buy from us   even if you don't have a PayPal account.<br /></p>"
		+"<p>PayPal automatically encrypts your confidential   information in transit from your computer to ours using the Secure Sockets Layer   protocol (SSL) with an encryption key length of 128-bits (the highest level   commercially available).<br \/><br \/>"
		+"<strong>By Post<\/strong><br \/>"
		+"Please send a cheque or postal   order including your name and address to:<br \/><br \/>"
		+"Pindrop Music, The Covey, Towerhouse Lane, Wraxall, Somerset, BS48 1JR<\/p>"
	 +" <\/div><\/div>";
	 id = 'helpdiv';
	if (document.getElementById)
	{
		//alert("document.getElementById");
		x = document.getElementById(id);
		//alert(x.innerHTML);
		if (x.innerHTML == ' ' || x.innerHTML == '') {
			//alert("yo");
			x.innerHTML = text;
		} else {
			//alert("back"+x.innerHTML+':');
			x.innerHTML = ' ';		
		}
	}
	else if (document.all)
	{
		x = document.all[id];
		if (x.innerHTML == '&nbsp;') {
			x.innerHTML = text;	
		} else {
			x.innerHTML = '&nbsp;';
		}
	}
	else if (document.layers)
	{
		x = document.layers[id];
		text2 = 'yo';'<P CLASS="testclass">' + text + '</P>';
		x.document.open();
		x.document.write(text2);
		x.document.close();
	}
}
