/*
         ___                         _____       __
        /  /\        ________       /    /\     / /\
(-----//  /  \//----/_____/__\\--) /____/  \___/_/ //--------------------------)
      /  /   /      \     | //     \    \  /    /\/    this code was created by
     /__/   /        \    |///-----\\____\/____/  \                       sigea
(---\\  \  /   (-----\\___|/        /    /\    \  /       
      \__\/                        /____/ /\____\/            __       sigea.ch
                                   \____\/  \  /             /\_\--------------)
                                         \___\//-------------\/_/  

*/
var newusers;
function Newusers(){
	this.prepare=function(){
		if(document.getElementById('newusers')){
			var newuserList=document.getElementById('newusers');
			var links=newuserList.getElementsByTagName('a');
			for(var i=0; i< links.length; i++) {
				links[i].onclick = function(){
					return !newusers.open(this);
				}
			}
			links=null;
			newuserList=null;
		}
	}
	this.open=function(element){
		window.open(element.href,'profile','toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=460,height=550');
		return true;
	}
}

function prepareNewusers(){
	newusers=new Newusers();
	newusers.prepare();
}

loadEvent.add(prepareNewusers);