	function HideHelpSpecial(pdivname) {
		/* loop through all the elements in the upper div, turning them off*/
		var a = document.getElementById(pdivname).getElementsByTagName('div');
		var n = a.length;
		for(i=0;i<n;i++)
			a[i].style.display = 'none';
	}
	
	function ShowHelpSpecial(pdivname, pid) {
		/* loop through all the elements in the upper div, turning them off*/
		HideHelpSpecial(pdivname);
		document.getElementById(pdivname + pid).style.display = 'block';
	}


	function changeImage(id) {
		if (img = document.getElementById("whirly_image")) {
			img.src = img.src.replace(/.\.gif/, id+".gif");
			ShowHelpSpecial('qhs', id);
		}
	}	

	function fncHideEmailAddr(box,fqdn) {
		return box +'@' + fqdn;
	}
	
// return the checked value of the given ID//
	function fncCheckTicked(pboxname) {
		if (document.getElementById(pboxname).checked == false){
			alert ('Please read our Terms and Conditions');
		};
		return document.getElementById(pboxname).checked;
	}