
function mOvr(src,clr)
{ 
	if (!src.contains(event.fromElement))
	{ 
		src.style.cursor = 'hand'; 
		src.bgColor = clr; 
	} 
} 
function mOut(src,clr)
{ 
	if (!src.contains(event.toElement))
	{ 
		src.style.cursor = 'default'; 
		src.bgColor = clr; 
	} 
}

function clickIt(src)
{
	if( src.tagName != 'A' )
	{
		//src.children.tags('A')[0].click();
		var i;
		for (i=0; i<src.children.length; i++)
		{
			if( src.children(i).tagName != 'A' )
				clickIt(src.children(i));
			else
			{
				event.cancelBubble = true;
				src.children(i).click();
			}
		}
	}
}

function mClk(src)
{
if( event.srcElement.tagName != 'A' && event.srcElement.parentElement.tagName != 'A' && event.srcElement.parentElement.parentElement.tagName != 'A' )
	clickIt(src);
}

function openwin(url,w,h) {
windowName=window.open(url,'mypopup','menubar=0,toolbar=0,location=0,status=1,scrollbars=0,resizable=1,width='+w+',height='+h+',left=0, top=0');
WtopX=parseInt((window.screen.availWidth-w)/2);
WtopY=parseInt((window.screen.availHeight-h)/2);
windowName.moveTo(WtopX,WtopY);
windowName.focus();
}

function OpenBrowser(theURL, winName, w, h, features) 
{
var x = (window.screen.availWidth-w)/2;
var y = (window.screen.availHeight-h)/2;
features = "left=" + x + ", top=" + y + ", " + "width=" + w + ", height=" + h + ", " + features;
window.open(theURL, winName, features);
}

function NavLang(lang)
{
document.location.href= "http://world.altavista.com/sites/auen/pos/babelfish/urltrurl?url=http%3A%2F%2Fwww.eztools-software.com&lp=" + lang + "&tt=url&urltext=";
}
