// Written 2005-2007 by Frank Blechschmitt, FBIS
//
function antispam_decode(text) {
	var dtxt=''; var txtc=0; var txtl=text.length;
	for(var i=0; i<txtl; i+=2) {
		txtc=parseInt(text.substr(i,2),16);
		dtxt+=String.fromCharCode(txtc);
	}
	return dtxt;
}
function OpenWindow(url, title, win_width, win_height) {
	var x,y;

	if(win_width==0) {
		win_width = 800;
	}
	if(win_height==0) {
		win_height = 600;
	}
	x = (screen.width / 2) - (win_width / 2);
	y = (screen.height / 2) - (win_height / 2);

	window.open(url,title,'resizable,width='+win_width+',height='+win_height+',top='+y+',left='+x+',toolbar=no,status=no');
}
function OpenWindowWithScrollbar(url, title, win_width, win_height) {
	var x,y;

	if(win_width==0) {
		win_width = 800;
	}
	if(win_height==0) {
		win_height = 600;
	}
	x = (screen.width / 2) - (win_width / 2);
	y = (screen.height / 2) - (win_height / 2);

	myWindow = window.open(url,title,"resizable,width="+win_width+",height="+win_height+",top="+y+",left="+x+",toolbars=no,scrollbars=yes,status=no");
}

