// Button rollover mechanism
function btnOff(imgId) {
	document.getElementById(imgId).src = "../images/icon-" + imgId + ".gif";
}

function btnOn(imgId) {
	document.getElementById(imgId).src = "../images/icon-" + imgId + "-on.gif";
}
// End of button rollover mechanism


// New window
function newWindow(doc,docName,width,height) {
	if (doc !== ""){
		docWindow = window.open(doc,docName,"width=" + width +",height=" + height +",resizable=yes,scrollbars=yes");
		if(docWindow){
			docWindow.focus();
		}
	}
}
// End of new window