function printThis() {
	var page;
	var current;
	current = encodeURIComponent(unescape(window.location.href)); 
	page = "http://umanitoba.ca/faculties/kinrec/ep_tools/miniu_print.php?referer=" + current + "&title=" + document.title;
	newwin = window.open(page,"printWindow","height=540,width=510,scrollbars")
}

function emailThis() {
	var page;
	var current;
	current = unescape(window.location.pathname);
	page = "http://umanitoba.ca/faculties/kinrec/ep_tools/miniu_email.php?referer=http://umanitoba.ca" + current + "&title=" + document.title;
	newwin = window.open(page,"emailWindow","height=550,width=520,scrollbars")
}

function feedbackThis(emailAddy) {
	var page;
	var current;
	current = unescape(window.location.pathname);
	page = "http://umanitoba.ca/faculties/kinrec/ep_tools/feedback.php?email=" + emailAddy + "&referer=http://umanitoba.ca" + current + "&title=" + document.title;
	newwin = window.open(page,"feedbackWindow","height=500,width=520,scrollbars")
}

function writetostatus(input){
    window.status=input
    return true
}
