function printThis() {
	var page;
	var current;
	current = unescape(window.location.pathname);
	page = "http://umanitoba.ca/ip/tools/ep_tools/print.php?referer=http://umanitoba.ca" + 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/ip/tools/ep_tools/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/ip/tools/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
}

function openWin(tgtUrl, id, feats) {
	if(!id){
		day = new Date();
		id = day.getTime();
	}
	feats = (feats) ? feats:"toolbar=no,scrollbars=yes,location=no,statusbar=no,menubar=no,resizable=yes,width=500,height=500,left=12,top=116";
	return window.open(tgtUrl, id, feats); 
}
