var isIE4 = false;

function newWindow(usePage,useWin,useHeight) {
	window.open('' + usePage + '','' + useWin + '','width=540,height=' + useHeight + ',resizable=yes,status=no,scrollbars=yes,toolbar=no,copyhistory=no');
}

function BusinessCard(page) {
  window.open('/' + page + '','framename','width=370,height=250,resizable=no,status=no,scrollbars=auto,toolbar=no,copyhistory=no');
}

function CheckBrowser(){
	if (navigator.appName == "Microsoft Internet Explorer" && navigator.appVersion.charAt(0) >= 4) {
		isIE4 = true;
	}
}

function mOvr(src,clrOver){
	if (!src.contains(event.fromElement)){
		src.style.cursor = 'hand'; src.bgColor = clrOver;
		src.children.tags('A')[0].style.color = '#FFFFFF';
	}
}

function mOut(src,clrIn){
	if (!src.contains(event.toElement)){
		src.style.cursor = 'default';
		src.bgColor = clrIn;
		src.children.tags('A')[0].style.color = '#000000';
	}
}

function mClk(src){
	if (event.srcElement.tagName=='TD'){
		src.children.tags('A')[0].click();
	}
}
