	   function getCheckedValue(radioObj) {
			if(!radioObj)
				return "";
			var radioLength = radioObj.length;
			if(radioLength == undefined)
				if(radioObj.checked)
					return radioObj.value;
				else
					return "";
			for(var i = 0; i < radioLength; i++) {
				if(radioObj[i].checked) {
					return radioObj[i].value;
				}
			}
			return "";
		}

function Show_Stuff(Click_Menu, expand_img)
// Function that will swap the display/no display for
// all content within span tags
{
if (Click_Menu.style.display == "none")
{
Click_Menu.style.display = "";
}
else
{
Click_Menu.style.display = "none";
}
//alert(expand_img);
if (expand_img != undefined) {
//	alert(expand_img.src);
	if (expand_img.src == 'https://www.arvixe.com/images/closed.png') {
		expand_img.src = 'images/open.png';
//		alert(expand_img.src);
	} else {
		expand_img.src = 'images/closed.png'; 
	}
}

}

function setCookie(name, value)
{
document.cookie= name + "=" + escape(value);
} 

function Show_This(inputString) {
	document.getElementById(inputString).style.display = '';
}

function Hide_This(inputString) {
	document.getElementById(inputString).style.display = 'none';
}

function Toggle_This(inputString) {
	if (document.getElementById(inputString).style.display=='none') {
		document.getElementById(inputString).style.display='';
	} else {
		document.getElementById(inputString).style.display='none';
	}
}
