function NeuFenster(nr,modus)
{

var txt = "";


if(modus == 0)
{
 txt = "http://www.s-connect.ltd.uk/html/merkliste.php?id=" + nr + "&m=s";
 MeinFenster = window.open(txt,"Zweitfenster","width=800,height=600,scrollbars,resizable=yes");
}
if(modus == 1) {
 txt = "http://www.s-connect.ltd.uk/html/merkliste.php?id=" + nr + "&m=l";
 MeinFenster = window.open(txt,"Zweitfenster","width=800,height=600,scrollbars,resizable=yes"); 
}

if(modus == 2) {
 txt = "http://www.s-connect.ltd.uk/html/merkliste.php?m=l";
 MeinFenster = window.open(txt,"Zweitfenster","width=800,height=600,scrollbars,resizable=yes"); 
}

if(modus == 3) {
 txt = "http://www.s-connect.ltd.uk";
 window.close();
 window.opener.location.href=txt;
 window.opener.location.replace(txt);
}

if(modus == 4) {
 txt = "suche.php?Such=*";
 MeinFenster = window.open(txt,"_self"); 
}


MeinFenster.focus();

}

