function popup(page,PWidth,PHeight,id) {
	eval("fineline"+id+"=window.open('"+page+"','fineline0','toolbar=0,scrollbars=1,location=0,status=1,menubars=0,resizable=0,width="+PWidth+",height="+PHeight+"')")
	eval("fineline"+id+".window.moveTo((screen.width/2)-(PWidth/2),(screen.height/4)-(PHeight/4))")
	
}


function spamGuard(user,domain) {
	locationstring = "mailto:" + user + "@" + domain;
	window.location = locationstring;
}

function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}