function moveMe(x, y)
{
    width = (screen.availWidth/2) - x;
    height = (screen.availHeight/2) - y;
    window.moveTo(width, height);
}

function openProject(strDateiName,strX,strY)
{
    window.open(strDateiName,'Fenster1','screenX=25px,screenY=25px,dependent=no,width='+strX+',height='+strY);
}

function openDefault(strDateiName,strX,strY)
{
    window.open(strDateiName,'Fenster1','screenX=50px,screenY=50px,dependent=no,width='+strX+',height='+strY);
    window.resizeTo(500, 500)
    moveMe(250, 250);
}

function setFocus()
{
    document.frmHome.txtKeyword.focus();
    document.frmHome.txtKeyword.select();
}

function submit()
{
    val = document.frmHome.txtKeyword.value;
    href = "friends.html?wrongKeyword";
    if(val.length > 3)
    {
        if(val == "tania")
        {
            href = "friends2.html";
        }
        else if(val == "tmc")
        {
            href = "friends2.html";
        }
    }
    parent.content.location.href = href;
}
