function email(user,domain) {	locationstring = "mailto:" + user + "@" + domain;	window.location = locationstring;}function viewImage(filename, path, width, height) {	src = '/img/view.php?f='+filename+'&p='+path+'&w='+width+'&h='+height;	openWindow(src, width, height, true);}function openWindow(src, width, height, scroll) {	height = height + 150;	width = width + 42;	if (height > screen.height) {		height = screen.height;	}	window.open(src, 'picture', "width=" + width + ",height=" + height + ",left=" + Math.round((screen.width - width) / 2) + ",top=" + Math.round((screen.height - height) / 2 - 40) + ",scrollbars=" + (scroll ? 1 : 0) + ",resizable=0,status=0").focus();}