window.onload = function(){

	if (navigator.appName == 'Microsoft Internet Explorer'){
	}
	else
	{
		var logo = document.getElementById('RightLogo').style;
		logo.right = 24;


		var menu_right = document.getElementById('RightMenu').style;
		menu_right.right = 29;
		
		var header_right = document.getElementById('HeaderRightTop').style;
		header_right.right = 30;
	
	}
}


function on(obj, sec)
{
	document.getElementById(obj.id).style.background= '#009afc';
	document.getElementById(obj.id).style.color= 'white';
	document.getElementById(sec).style.color= 'white';
	document.getElementById(obj.id).style.cursor= 'pointer';
	document.getElementById(obj.id).style.padding= '0px 0px 0px 10px';
}

function out(obj, sec)
{
	document.getElementById(obj.id).style.background= 'white';
	document.getElementById(obj.id).style.color= '#3f3f3f';
	document.getElementById(sec).style.color= '#3f3f3f';
	document.getElementById(obj.id).style.padding= '0px 0px 0px 0px';
}


function windowOpen2(url, w, h)
{
	var page = url;
	var width = w;
	var height = h;
	var x = Math.round((screen.width-width)/2);
	var y = Math.round((screen.height-height)/2);
	windowprops = "height="+height+",width="+width+",location=no,"+ "scrollbars=no,menubars=no,toolbars=no,resizable=no,left="+x+",top="+y;
	window.open(page, "Popup", windowprops);
}

function windowclose2(otv)
{
       if (otv == 'Yes'){
	window.close();
         }
}

function bor1()
{
    document.getElementById('bull').style.borderColor = 'gray';
}

function bor2()
{
    document.getElementById('bull').style.borderColor = 'white';
}