
function popUp(URL) {
		day = new Date();
		id = day.getTime();
		winName = "page" + id;
		val = winName + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=1,resizable=1,width=700,height=525,left=0,top=0');";
		eval(val);
		setTimeout(winName + ".focus();", 1000);
}

function popUp(URL, params) {

	day = new Date();	
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', '" + params + "');");
	
}

function printpage() {

	window.print();

	
}

function emailpage() {
	var recipient = prompt("Recipient's email address:","");
	if (recipient == null) {
		alert("You must enter an email address.")
	} else {
		var subject = document.title;
		var url = document.location.href;
		var body = "Please see the following page ...\n\n" + "Title:   " + subject + "\n" + "Link:    " + url + "\n";
		var message = "mailto:" + recipient + "?subject=" + escape(subject) + "&body=" + escape(body);
		window.location = message;
		window.focus();
	}
}


