// JavaScript Document
function gotoWebsite(urlnum){

//	COMPANY
//
	if(urlnum=="about") {
	this.location.href="/about.shtml";
	} 
				
	if(urlnum=="execteam") {
	this.location.href="/execTeam.shtml";
	} 
				
	if(urlnum=="patents") {
	this.location.href="/patents.shtml";
	}
	
	if(urlnum=="innews") {
	this.location.href="/inNews.shtml";
	}
	
	if(urlnum=="pressreleases") {
	this.location.href="/pr.shtml";
	}

	if(urlnum=="locations") {
	this.location.href="/offices.shtml";
	}

//	OPERATING UNITS
//
	if(urlnum=="operating") {
	this.location.href="/operating.shtml";
	}
	
	if(urlnum=="ecentives") {
	this.location.href="/ecentives.shtml";
	}
	
	if(urlnum=="collabrys") {
	this.location.href="/collabrys.shtml";
	}

	if(urlnum=="cr") {
	this.location.href="/cr.shtml";
	}
	
//	Contact Us
//
	if(urlnum=="contactus") {
	this.location.href="/contactus.shtml";
	}
	
}