
user = "mail";
site = "MyTrip.dk";
address = user + '@' + site;
adresselink = '<A href=\"mailto:' + address + '?subject=http://MyTrip.dk"'


function menuOvr(src,clrOver)
{
	if (!src.contains(event.fromElement))
	{
		src.style.cursor = 'hand';
		src.bgColor = "#999999";
		src.children.tags('A')[0].style.color = '#000000';
	}
}

function menuDwn(src,clrDwn)
{
	if (!src.contains(event.fromElement))
	{
		src.style.cursor = 'hand';
		src.bgColor = "#00ff00";
		src.children.tags('A')[0].style.color = '#FFFFFF';
	}
}

function menuOut(src,clrOut)
{
	if (!src.contains(event.toElement))
	{
		src.style.cursor = 'default';
		src.bgColor = "#009900";
		src.children.tags('A')[0].style.color = '#FFFFFF';
	}
}
function opWin(url){

	window.open(url,'mhome');
	}

function fixUglyIE()
{
for (a in document.links) document.links[a].onfocus = document.links[a].blur;
}
if (document.all)
{
document.onmousedown = fixUglyIE;
}