function popUp(URL) {
	var day = new Date(); var id = day.getTime();
	var width = 350; var height = 400;
	var left = (screen.width/2) - width/2; var top = (screen.height/2) - height/2;
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=" + width + ",height=" + height + ",left=" + left + ",top=" + top + "');");
}

function popupEmail(user,dom,subject)
{
   locationstring="mailto:" +user+"@"+dom+"?Subject="+subject;
   window.location=locationstring;
}

function image_open(image_ref, w, h, caption) {
	w = w + 40;
	h = h + 60;
	cond = "toolbar=no,location=no,status=no,menubar=no,resizable=no,top=30,left=30,width=" + w + ",height=" + h;
	image_win = window.open("","imageWindow",cond);
	if (image_win && !image_win.closed) {
		image_win.document.write('<html><head><title>Image</title><link href="/styles/styles.css" rel="stylesheet" type="text/css"></head><body class="popup"><div class="centerCaption"><a href="javascript:window.close()"><img alt="', caption ,'" src="', image_ref, '" /></a><div>', caption ,'</div></div></body></html>');
	} else {
		image_win = window.open("","imageWindow",cond);
		image_win.document.write('<html><head><title>Image</title><link href="/styles/styles.css" rel="stylesheet" type="text/css"></head><body class="popup"><div class="centerCaption"><a href="javascript:window.close()"><img alt="', caption ,'" src="', image_ref, '" /></a><div>', caption ,'</div></div></body></html>');
		if (image_win && !image_win.closed)
			image_win.focus();
	}
}
function go_back() {
	if (history.length > 0){
		history.back();
	}
}