// ------ MENU FUNCTIONS ------

function DoMenuOver(obj,sel) {
	var id = obj.id;
	var optionsid = id + '_options';
	
	document.getElementById(id).style.background = "#686996";
	document.getElementById(id).style.color = "#ffdd00";
	
	if(document.getElementById(optionsid)){
		document.getElementById(optionsid).style.display = "block";
	}
}

function DoMenuOut(obj,sel) {
	var id = obj.id;
	var optionsid = id + '_options';
	
	if(sel!=1){
		document.getElementById(id).style.background = "#12145A";
		document.getElementById(id).style.color = "#ffdd00";
	}else{
		document.getElementById(id).style.background = "#FFFFFF";
		document.getElementById(id).style.color = "#000033";
	}
	
	if(document.getElementById(optionsid)){
		document.getElementById(optionsid).style.display = "none";
	}
}

function DoOptionsContOver(obj,sel) {
	var id = obj.id;
	var parentid = id.substring(0,id.indexOf("_options"));
	
	document.getElementById(id).style.display = "block";
	document.getElementById(parentid).style.background = "#000033";
	document.getElementById(parentid).style.color = "#ffffff";
}

function DoOptionsContOut(obj,sel) {
	var id = obj.id;
	var parentid = id.substring(0,id.indexOf("_options"));
	
	document.getElementById(id).style.display = "none";
	if(sel!=1){
		document.getElementById(parentid).style.background = "#12145A";
		document.getElementById(parentid).style.color = "#ffdd00";
	}else{
		document.getElementById(parentid).style.background = "#FFFFFF";
		document.getElementById(parentid).style.color = "#000033";
	}
}

function DoOptionOver(obj,sel) {
	var id = obj.id;
	
	document.getElementById(id).style.background = "#686996";
}

function DoOptionOut(obj,sel) {
	var id = obj.id;
	
	document.getElementById(id).style.background = "#000033";
}


//------- LINK FUNCTION --------

function DoLink(href) {
	document.location.href = href;
}

//------- ADMIN FUNCTION --------

function DoLogin() {
	newwindow=window.open('login.asp','loginwindow','height=200,width=400,scrollbars=no,resizable=no');
}

function DoChangePassword() {
	newwindow=window.open('changepassword.asp','passwordwindow','height=220,width=400,scrollbars=no,resizable=no');
}

//-------- OTHER FUNCTIONS ----------

function DoImageMouseOver(obj) {
	var id = obj.id;
	
	if(id.substring(0,10) == 'td_button_') {
		document.getElementById(id).style.background = "#c4c4c4";
	} else {
		document.getElementById(id).style.background = "#686996";
	}
}

function DoImageMouseOut(obj) {
	var id = obj.id;
	if(id.substring(0,10) == 'td_button_') {
		document.getElementById(id).style.background = "#eeeeee";
	} else {
		document.getElementById(id).style.background = "#CFDAE8";
	}
}
