	function goDelete(fDeleteURL, fDeleteItem)
	{
		if(window.confirm("Are you sure you want us to delete " + fDeleteItem + "?."))
		{
			window.location.href = fDeleteURL;
		}
	}
	function openWindow(URL, height, width, resize, scroll) {
	  popupWin = window.open(URL,'page','height='+height+',width='+width+',resizable='+resize+',scrollbars='+scroll+'')
	}
	function URLRedirect(SecondsTillRedirect, RedirectURL)
	{
		msTillRedirect = SecondsTillRedirect * 1000;
		setTimeout("window.location = '"+RedirectURL+"'",msTillRedirect);
	}
	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 "";
	}