function nickPage(nick) {
//var height=500;
//var width=500;
//var x=(screen.availWidth - width) / 2
//var y=(screen.availHeight - height) / 2

location.href="http://www.ursula-abi2004.de/cgi-bin/members/nickpage.pl?nick=" + nick;
//np = window.open("http://www.ursula-abi2004.de/cgi-bin/members/nickpage.pl?nick=" + nick, "Nickpage", "width=" + width + ",height=" + height + ",dependent=no,location=no,menubar=no,resizable=no,scrollbars=yes,status=no,toolbar=no,left=" + x + ",top=" + y);
//setTimeout("np.focus()", 100);
}

function nickMail(to,subject,text) {
//var height=300;
//var width=430;
//nm = window.open("http://www.ursula-abi2004.de/cgi-bin/members/mail/compose.pl?to="+to+"&betreff="+subject+"&text="+text, "Message", "width=" + width + ",height=" + height + ",dependent=no,location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no");
location.href="http://www.ursula-abi2004.de/cgi-bin/members/mail/compose.pl?to="+to+"&betreff="+subject+"&text="+text;
//setTimeout("nm.focus()", 100);
}

function online() {
var height=180;
var width=450;
ol = window.open("http://www.ursula-abi2004.de/cgi-bin/members/online.pl", "Online", "width=" + width + ",height=" + height + ",dependent=no,location=no,menubar=no,resizable=no,scrollbars=yes,status=no,toolbar=no");
setTimeout("ol.focus()", 100);
}

function flashMessage(nachricht) {
alert(nachricht);
}

function sendFlashMessage(to) {
 text = prompt('Flash-Message an ' + to + ':');
 if(text && to) {location.href="/cgi-bin/members/flash-message.pl?an=" + to + "&text=" + text; }
}

function fsmiley(name) {
document.forum.text.value = document.forum.text.value + name;
}


var formSent = 0;
function formCheck() {
 if(formSent == 0) {
  formSent = 1;
  return true;
 } else {
  alert('Bitte nur 1x klicken. Danke!');
  return false;
 }
}