<!--
function ParseLocationField()
{
	function getParm(string,parm) {
	    // returns value of parm from string
	    var startPos = string.indexOf(parm + "=");
	    if (startPos > -1) {
	        startPos = startPos + parm.length + 1;
	        var endPos = string.indexOf("&",startPos);
	        if (endPos == -1)
	            endPos = string.length;
	        return unescape(string.substring(startPos,endPos));
	    }
	    return '';
	}

	var passed = location.search.substring(1);
	document.tmpVars.RAC.value = getParm(passed,'RAC');

}

function launch_url(id) {

		var append_url = '';
		var new_url = '';

		if (document.tmpVars.RAC.value == 0) {
			append_url = '?RAC=0';
		} else {
			append_url = '?RAC=' + document.tmpVars.RAC.value;
		}

		if (id==1) {
			new_url = "resume.html" + append_url;
		} else if (id==2) {
			new_url = "Abbreviated_Skill_Highlights.html" + append_url;

		} else if (id==3) {
			new_url = "Programming_Languages.html" + append_url;

		} else if (id==4) {
			new_url = "Recent_Work_Samples.html" + append_url;

		} else if (id==5) {
			new_url = "Contact.html" + append_url;
		}

		document.location = new_url;

	}

//-->

