function writelink(emailname, classname) {
	document.write('<a href=\"mailto:' + emailname + '\@tliteltd.com\" ' + 'class=\"' + classname + '\">' + emailname + '@tliteltd.com</a>') ;
}
function writelink2(emailname, classname, title) {
	document.write('<a href=\"mailto:' + emailname + '\@tliteltd.com\" ' + 'class=\"' + classname + '\">' + title + '</a>') ;
}
function CheckSearchForm(searchForm) {
	if (searchForm.search.value=="") {
		alert("Please enter at least one keyword to search");
		searchForm.search.focus();
		return false;
	}
	return true
}
function showReleaseNotes() {
	window.open('Release_Notes.htm','','toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=500,height=250');
}
function mOver(menuItem) {
   menuItem.style.cursor = 'hand';
   menuItem.style.color = '#ffd275';
}
function mOut(menuItem) {
   menuItem.style.cursor = 'default';
   menuItem.style.color = '#ffffff';
}
function mOverMenu(menuItem){
   menuItem.style.cursor = 'hand';
	menuItem.style.borderColor = "#9d9d9d";
	menuItem.style.backgroundColor = "#f1f1f1";
	menuItem.style.color = "#000000";
}
function mOutMenu(menuItem){
   menuItem.style.cursor = 'default';
	menuItem.style.borderColor = "#ffffff";
	menuItem.style.backgroundColor = "#ffffff";
	menuItem.style.color = "#000000";
}
function mDown(url) {
	window.location = url;
}
