function getURL(URL_label, target)
{
	var URL;	
	
	/* top menu */
	if (URL_label == "home"){URL = "index.html";}
	if (URL_label == "about_us"){URL = "about_us.html";}
	if (URL_label == "contact_us"){URL = "contact_us.html";}
	
	/* lower menu */
	if (URL_label == "heco"){URL = "heco.html";}
	if (URL_label == "sherpa"){URL = "sherpa.html";}
	if (URL_label == "gaulhofer"){URL = "gaulhofer.html";}
	if (URL_label == "pavatex"){URL = "pavatex.html";}
	if (URL_label == "siga"){URL = "siga.html";}
	if (URL_label == "balteschwiler"){URL = "balteschwiler.html";}
	
	/* footer */
	if (URL_label == "news_and_events"){URL = "news&events.html";}
	if (URL_label == "youtube"){URL = "http://www.youtube.com/user/HerrmannFrames";}
	if (URL_label == "facebook"){URL = "facebook.html";}
	if (URL_label == "logassoc"){URL = "http://www.logassociation.org";}
	if (URL_label == "tfbc"){URL = "http://www.timberframe.org";}
	if (URL_label == "tfg"){URL = "http://www.tfguild.org";}
	
	window.open(URL, target);
}
