/********************************************************************/
/* The purpose of this script is to redirect the user if an element */
/* is click - basically makes an anchor tag out of an element. 		*/
/* By Tanner Naeher, Coyote6 GraphX, coyote6graphx.com.				*/
/********************************************************************/
function link (url) {
	window.location = url;
}

function link_select (url, select) {
	s = select.options[select.selectedIndex].value;
	u = url + s;
	window.location = u;
}