function pop() {

var url = new Array() ;
url[0] = 'http://www.featurefuck.com/toplist/' ;

var whichurl = Math.floor(Math.random()*(url.length)) ;

var popWhat = url[whichurl] ;
var aw = screen.availWidth - 200 ;
var ah = screen.availHeight - 180 ;
    
going = window.open(popWhat,'bye','width='+ aw + ',height=' + ah + ',menubar=yes,scrollbars=yes,status=yes,toolbar=yes,location=yes,resizable=yes,screenX=0,screenY=0,left=0,top=0');
going.blur();
}