﻿var mid='';
function MenuClick(page)
{
document.getElementById('Menuframe').src=page;
}

function Location(id)
{
window.location=id;
}

function pagemenu(id)
{
mid = id;
var i = document.getElementById(id);
i.style.color = 'Red';
i.style.cursor = 'normal';
}
function MO(id)
{

 var i = document.getElementById(id);
//document.getElementById(id).style.backgroundImage = 'url(../Images/menu_strip_onover.gif)';
//document.getElementById(id).style.height='36px';
i.style.color = 'White';
i.style.cursor = 'pointer';

}

function MOut(id)
{
if(mid!=id)
{
var i = document.getElementById(id);
//document.getElementById(id).style.backgroundImage = 'url(../Images/menu_strip.gif)';
//document.getElementById(id).style.height='36px';
i.style.color = 'Red';
i.style.cursor = 'normal';
}
}

function C(id) // On mouse over
{
document.getElementById(id).style.color = 'White';
}
function D(id) // Mouse over back - Item
{
document.getElementById(id).style.color='#0094e1';
}
function C1(id) // On mouse over
{
document.getElementById(id).style.color = 'Red';
}
function D1(id) // Mouse over back - Item
{
document.getElementById(id).style.color='#989898';
}

function pagemenu(id)
{
mid = id;
var i = document.getElementById(id);
i.style.color='white';
i.style.cursor = 'pointer';
}

function MenuClick1(page,obj)
{
try{
document.getElementById(mid).style.color='Red';
mid=obj;
document.getElementById(obj).style.color='white';
document.getElementById('Menuframe').src=page;
}
catch(e)
{alert(e);}
}