//Basic Site Javascript Functions
/*function getInsideWindowWidth() {
	// if a Netscape-compatible browser
	if (window.innerWidth) {
		return window.innerWidth;
	// if IE6 with CSS support
	} else if (document.compatMode && document.compatMode.indexOf("CSS1") >= 0) {
		return document.body.parentElement.clientWidth;
	// if IE 5.5 or earlier
	} else if (document.body && document.body.clientWidth) {
		return document.body.clientWidth;
	}
	return 0;
}/**/
function gotoURL(value) {
	window.location = value; 
}
function hideLevel(_levelId){
	var thisLevel = document.getElementById(_levelId);
	thisLevel.style.display="none";
}
function showLevel(_levelId){
	var thisLevel=document.getElementById(_levelId);
		thisLevel.style.display = "block";
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}