//Browser Sniffer
function check_browser()
	{
	if (document.getElementsByTagName)
		{}
	else
		{location.href="old_browser.asp"} 
	mouse_events()
	}

//phot class onclick
function mouse_events()
	{
	var a = document.getElementsByTagName("IMG")
	for (var b=0;b<a.length;b++)
		{
		if (a[b].className=="photo")
			{
			a[b].onmouseover 	= function(){this.style.cursor="hand";if (this.id==""){this.id=this.alt};this.alt="Click to Enlarge"}
			a[b].onmouseout 	= function(){this.style.cursor=""}
			a[b].onclick 		= function(){p=this.src.replace('http://www.cars2airports.com/photos/','');window.open('photo.asp?p=' + p + '&a=' + this.id,'pop','width=500;height=350;scrolbars=no')}
			}
		}
	var a = document.getElementsByTagName("TD")
	for (var b=0;b<a.length;b++)
		{
		if (a[b].className=="mbtn")
			{
			a[b].onmouseover 	= function(){this.style.cursor="hand";this.className="mbtn2"}
			a[b].onmouseout 	= function(){this.style.cursor="";this.className="mbtn"}
			a[b].onclick	 	= function(){num=this.id.replace(/t/,'');l=eval('document.getElementById("l'+num+'")');location.href=l.href}

			}
		}
	}