//window.addEvent('domready', function() {
	//window.resizeTo(800,720);
//});

function MessagePlayer(playerID) {
    var where="sendmessage.php?to="+playerID;
    var height=450;
    var width=500;
    var left=(screen.availWidth/2)-(width/2);
    var top=(screen.availHeight/2)-(height/2)-100;
    window.open(where,"","height="+height+",width="+width+",left="+left+",top="+top,scrollbars="yes");
}

function challenge(playerID) {
    var where="challenge.php?opponent="+playerID;
    var height=500;
    var width=650;
    var left=(screen.availWidth/2)-(width/2);
    var top=(screen.availHeight/2)-(height/2)-100;
    window.open(where,"","height="+height+",width="+width+",left="+left+",top="+top,scrollbars="yes");
}

function newuserchallenge(playerID) {
    var where="newuserchallenge.php?opponent="+playerID;
    var height=500;
    var width=650;
    var left=(screen.availWidth/2)-(width/2);
    var top=(screen.availHeight/2)-(height/2)-100;
    window.open(where,"","height="+height+",width="+width+",left="+left+",top="+top,scrollbars="yes");
}

function addbuddy(playerID)  {
    var where="addbuddy.php?opponent="+playerID;
    var height=420;
    var width=500;
    var left=(screen.availWidth/2)-(width/2);
    var top=(screen.availHeight/2)-(height/2)-100;
    window.open(where,"","height="+height+",width="+width+",left="+left+",top="+top,scrollbars="no");
}
