/*  redirect page using loc url */
function goThere(loc)
{
	window.location.href=loc;
}

NS4 = (document.layers)? true:false;
IE4 = (document.all)? true:false;
N6 = (document.getElementById && !document.all) ? true:false;
function stopError() {
 return true;
}

window.onerror = stopError;

function preload(imgObj,imgSrc) { // function prelaods all images 
	if (document.images) {
		eval(imgObj+' = new Image()')
		eval(imgObj+'.src = "'+imgSrc+'"')
	}
}

function change(imgName,imgObj) {
		document.images[imgName].src = eval(imgObj+'.src');
}
preload ('shim', '/mx_images/spacer.gif');


preload ('home', '/mx_images/nav/home.gif');
preload ('homeO', '/mx_images/nav/homeO.gif');

preload ('about', '/mx_images/nav/about.gif');
preload ('aboutO', '/mx_images/nav/aboutO.gif');

preload ('ourProducts', '/mx_images/nav/ourProducts.gif');
preload ('ourProductsO', '/mx_images/nav/ourProductsO.gif');

preload ('tech', '/mx_images/nav/tech.gif');
preload ('techO', '/mx_images/nav/techO.gif');


function to_old_win(url)
{
	opener.location.href = url;
	opener.location.focus();
}
function popUp(page,name,h,w) {
				specs = "toolbar=no,location=no,directories=no,status=no,scrollbars=yes,width="+ w +",height="+ h +",menubar=no";
				nw = window.open(page, name, specs);
				nw.focus();
			}
		
