
//======================================
//         GLOBAL DECLARATIONS
//======================================

	var DetailWindow;
	self.name="Main";

	var SectionName = "";

//======================================



function mOver(o) {

	o.style.background="#4D6089";
	o.style.border="1px solid #123464";
	o.style.cursor="pointer";

	if(typeof event.srcElement=="object") {
		if(event.srcElement.tagName=='TD') {
		o.children.tags('a')[0].style.color="#FFFFFF";
		}
	}

}

function mOut(o) {

	o.style.background="#CFD2EB";
	o.style.border="1px solid #4D6089";
	o.style.cursor="default";

	if(typeof event.srcElement=="object") {
		if(event.srcElement.tagName=='TD') {
		o.children.tags('a')[0].style.color="";
		}
	}

}

function mClk(o) {

	if(typeof event.srcElement=="object") {
		if(event.srcElement.tagName=='TD') {
		o.children.tags('a')[0].click();
		}
	}
}

function iOver(o) { if(document.images && SectionName!=o.name) {o.src = imgOver[o.name].src;} }
function iOut(o) { if(document.images && SectionName!=o.name) {o.src = imgOut[o.name].src;} }
function iDefault(o) { if(document.images) {o.src = imgOver[o.name].src;} }


function verifyChange(o) {

	if(o.password.value=="") { alert("Password cannot be blank.");return false; }
	else if(o.cpassword.value=="") { alert("Confirm New Password cannot be blank.");return false; }
	else if(o.password.value!=o.cpassword.value) { alert("Password and Confirm New Password do not match.");return false; }
	else {
	return true;
	}


}