function creditWin(base)
{
	cUrl = base + "/credits.php";	
	cWin = window.open(cUrl, 'creditWin', 'height=310,width=500,directories=no,location=no,menubar=no,resizable=no,scrollbars=yes,status=no,titlebar=yes,toolbar=no');
}

function getObject(id) {
if (document.getElementById(id)) {
	return document.getElementById(id);
	} else if (document.all[id]) {
		return document.all[id];
		} else if (document.layers && document.layers[id]) {
			return (document.layers[id]);
			} else {
				return false;
			}
}


