<!-- hide from none JavaScript Browsers
function addtofavorites(){ 
	var favoriteurl=location.href; 
	var favoritetitle=document.title;
	window.external.AddFavorite(favoriteurl,favoritetitle);
}

function mailpage(topic){
	if (topic=="Feedback"){
	mail_str="mailto:acl@alderwick.com?subject=My Feedback";
	location.href=mail_str;
	}
	if (topic=="Recommend"){
	mail_str="mailto:?subject= I would like to recommend " + document.title;
	mail_str+="&body=I would like to recommend "+document.title;
	mail_str+=". You can check this out at "+location.href; 
	location.href=mail_str;
	}	
	if (topic=="Services"){
	mail_str="mailto:acl@alderwick.com?subject= Website info: I would like to find out more about Alderwick Consulting";
	location.href=mail_str;
	}
	if (topic=="CVNoRef"){
	mail_str="mailto:acl@alderwick.com?subject= Website general: I attach my CV for your consideration";
	location.href=mail_str;
	}
	if (topic=="Vacancy"){
	mail_str="mailto:carnold@alderwick.com?subject= Marketing/Research Assistant: I attach my CV for your consideration";
	location.href=mail_str;
	}
	if (topic=="CVRef"){
	mail_str="mailto:acl@alderwick.com?subject= Website ad: "+document.title;
	location.href=mail_str;
	}
}

function openjob(theurl) {
	ImageWindow=window.open(theurl,"newwin","hotkeys=no,width="+(screen.availWidth/1.3)+"height="+screen.availHeight+",left="+screen.availLeft+",top="+screen.availTop+",fullscreen=no,toolbar=no,status=no,directories=no,menubar=no,scrollbars=yes,resizable=no,location=no,dependent=yes");
	ImageWindow.moveTo(0,0);
	ImageWindow.focus();
	ImageWindow.document.close();
}
// End Hiding -->