function profil(url) {
	F1 = window.open(url,"loveme_popup","width=700,height=500,left=0,top=0,location=no,menubar=no,resizable=no,status=no,toolbar=no,scrollbars=yes");
	F1.focus();
}

function openFenster(datei,breite,hoehe)
{
	fenster = open(datei,"Pop","width="+breite+",height="+hoehe+",locationbar=no,menubar=no");
	fenster.focus();
}

function Gaestebuch(url) {
  //wir sind bereits im popup
  location.href = url;
}

function MeinGaestebuch(url) {
  F1 = window.open(url,"loveme_popup","width=685,height=500,left=0,top=0,location=no,menubar=no,resizable=no,status=no,toolbar=no,scrollbars=yes");
  F1.focus();
}

function NeuePost(url) {
  //wir sind bereits im popup, resize genügt.
  window.resizeTo(640, 400);
  location.href = url;
}

function VoiceBox(url) {
  //wir sind bereits im popup, resize genügt.
  window.resizeTo(320, 200);
  location.href = url;
}

function SMS(url) {
  //wir sind bereits im popup, resize genügt.
  window.resizeTo(320, 300);
  location.href = url;
}

function NeuePostNachricht() {
  alert("Du hast neue Post!");
}

function chateinladung(nick) {
	Para = 'scrollbars=yes,resizable=yes,WIDTH=550,HEIGHT=450';
	if (document.all) {
		chat = window.open ('', 'fenster',Para);
		if (!chat.document.title) {
			chat.location.href = "http://217.160.166.15/chat/login.cgi?name=" + nick;
		}
	} else {
		if(!self.fenster || chat.closed) {
			chat = window.open ('', 'fenster',Para);
			chat.location.href = "http://217.160.166.15/chat/login.cgi?name=" + nick;
		}
	}
	chat.focus();
}
