function checkBrowser()  {
	if (document.all) {
		return;
	} else if (document.getElementById) {
		return;
	} else if (document.layers) {
		return;
	}
	if (jsVersion > 1.0)  {
		window.location.replace("oldBrowser/indexOld.html");
		} else {
			window.location = "oldBrowser/indexOld.html";
	}
}

checkBrowser()

function email1()  {
	s1 = 'jimt'+'ee'+'ny.c'+'om';
	s2 = 'in'+'fo@';
	return s2 + s1; }
 		
function emailclick(e) { document.location = 'mailto:' + e; }