/* The code contained  in this file is  copyrighted by www.jojoxx.net
The file may be used for none commercial applications and distributed
as long as these lines remain intact.  The file or part of it may not
be sold  or  included  in any  other commercial  application  without
agreement from the author. If you have questions or comments, contact
the author at http://www.jojoxx.net

© Copyright - www.jojoxx.net - 2003                                */

var loginObj=new Object();
function login(username,password){
	if(username){ loginObj.username=username; }
	if(password){ loginObj.password=password; }
	var winWidth=400;
	var winHeight=250;
	var loginWin=window.open("login/login.html","","top=" + parseInt(screen.height/2-winHeight/2-16) + ",left=" + parseInt(screen.width/2-winWidth/2-5) + ",width=" + winWidth + ",height=" + winHeight);
}


