function email() { // try to avoid spam trollers, intentionally complex
	var a = "simt";
	var b = "anx@";
	var c = "gmai";
	var d = "l.com";
	
	e_string = "E-mail: <a href=\"ma" + "ilto:" + a + b + c + d + "\">" + a + b + c + d + "</a>";
	document.write(e_string);
}
function saveAsPDF() {
	var sUriRequest = "author_id=" + "5F64CCA3-9134-4590-9972-2982004706F5";
	sUriRequest += "&page=" + "0";
	sUriRequest += "&top=" + "0.5";
	sUriRequest += "&bottom=" + "0.5";
	sUriRequest += "&left=" + "0.5";
	sUriRequest += "&right=" + "0.5";
    
	var pURL = "http://savepageaspdf.pdfonline.com/pdfonline/pdfonline.asp?cURL=" + escape(document.location.href) + "&" + sUriRequest;
	window.open(pURL, "PDFOnline", "scrollbars=yes,resizable=yes,width=640,height=480,menubar,toolbar,location");
    return false;
}
function adjust_prefs(scrollToExp) { // Takes a boolean if we should scroll afterwards
    var new_loc = "/resume.php?empinfo=" + document.getElementById('empinfo').checked + "&pic=" + document.getElementById('pic').checked;
    if (scrollToExp)
    	new_loc += "#experience";
    
    window.location.replace(new_loc);
}
