function swapImg(name,imgPath) {	if(document.images) {		document.images[name].src = "/img/navi/" + imgPath + ".gif";	}}function email(user,domain,subject) {	locationstring = "mailto:" + user + "@" + domain+"?subject="+subject;	window.location = locationstring;}function viewImage(f,w,h,id,sec,dir) {	src = '/viewers/image.php?f='+f+'&w='+w+'&h='+h+'&id='+id+'&sec='+sec+'&dir='+dir;	openWindow(src, w, h, false);}function openWindow(src, width, height, scroll) {	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();}
