//   Browser Sniffer
var sAgent = navigator.userAgent;
var mac = sAgent.indexOf("Mac") > -1;
bName = navigator.appName;
bVer = parseInt(navigator.appVersion);
var ns3 = (bName == "Netscape" && bVer == 3);
var ie3 = (bName == "Microsoft Internet Explorer" && bVer == 3);
var ns4 = (document.layers) ? true : false;
var ie4 = (document.all && !document.getElementById) ? true : false;
var ie5 = (document.all && document.getElementById) ? true : false;
var ns6 = (document.getElementById && !document.all) ? true : false;

//   Just in case function 
function init(){null}

// Netscape Resize Workaround
if (ns4) {
	widthCheck = window.innerWidth
	heightCheck = window.innerHeight
	window.onResize = refresh
}

function refresh() {
	if (widthCheck != window.innerWidth || heightCheck != window.innerHeight)
	document.location.href = document.location.href
}

// footer
var footer = '' +
'<table width="774" border="0" cellspacing="0" cellpadding="0">' +
'  <tr>' +
'    <td><img src="images/shim_clear.gif" width="1" height="30" alt="" border="0"></td>' +
'    <td align="center" valign="middle"><p class="copyright"> &#169 2010 YOKOHAMA AEROSPACE AMERICA, INC. All rights reserved.</td>' +
'    <td><img src="images/shim_clear.gif" width="1" height="30" alt="" border="0"></td>' +
'  </tr>' +
'  <tr>' +
'    <td><img src="images/shim_clear.gif" width="1" height="1" alt="" border="0"></td>' +
'    <td><img src="images/shim_clear.gif" width="772" height="1" alt="" border="0"></td>' +
'    <td><img src="images/shim_clear.gif" width="1" height="1" alt="" border="0"></td>' +
'  </tr>' +
'</table>';


  