var IUFLHome="http://indigowebdesigns.com/IUFL/"

// PUBLIC
function showReport(rpt) {
	
   //alert("Showing Report: "+rpt);
   
   window.open(IUFLHome+"/Reports/"+rpt+".html", "ReportViewer", "width=840px,height=720px,location=no,menubar=no,resizable=no,toolbar=no,scrollbars=yes");
}


function getObject(objectId) {
	if( document.all && !document.getElementById ) {
		return document.all(objectId)
	}
	else {
		return document.getElementById(objectId)
	}
}


function resetScroll() {
	//alert("Reset Scroll!");
	top.scrollTo(0,0);
}

function setButtonImage(image,hover) {
	var imgSrc = "../images/Buttons/Button_" + image.name;
		
	if( hover ) {
		imgSrc = imgSrc + "_hover";
	}
		
	document[image.name].src = imgSrc + ".png";
}




