/******************************************************************************************

		 Header and footer bars (IE + Mozilla Firefox + Opera + ... )

	Kuwait University
	Department of Statistic and operation research
	Made by Rami Zamel ( 0111-1209 )
	for any problems or infos feel free to contact me -->  rami1983@hotmail.com

 Notes :
   mb --> Mainbar ( Header)
   fb --> Footbar ( Footer)
   b_goto(url) --> function to set address to (url) and used as hyperlink for click enevt

*******************************************************************************************/


function mb_over(idx) {
	box = document.getElementById(idx);
	txt = document.getElementById(idx+'_a');
	box.bgColor = "#287BA4";
	box.style.borderColor= "#C4D7F2";
	txt.style.color = "#FFFFFF";
}

function mb_out(idx) {
	box = document.getElementById(idx);
	txt = document.getElementById(idx+'_a');
	box.bgColor = "#3399CC";
	box.style.borderColor= "#3399CC";
	txt.style.color = "#CBDEF5";
}

function fb_over(idx) {
	box = document.getElementById(idx);
	txt = document.getElementById(idx+'_a');
	box.bgColor = "#426A93";
	box.style.borderColor= "#426A93";
	txt.style.color = "#FFFFFF";
}

function fb_out(idx) {
	box = document.getElementById(idx);
	txt = document.getElementById(idx+'_a');
	box.bgColor = "";
	box.style.borderColor= "#C4D7F2";
	txt.style.color = "#000000";
}

function b_goto(url){
	document.location.href = url;
}