
function show_me() {

var nombre;
var nombre2;
var nbmax;
var listing = new Array();
var newurl;
var nbrchoice;
var nbrchoiceMax;
var nbrchoiceMin;

nbrchoiceMax = 5;
nbrchoiceMin = 4;
nbrchoice= Math.floor(Math.random() * nbrchoiceMax)+1;

	if (nbrchoice < nbrchoiceMin)
		{



// 21.04.2011

listing =  [
"http://www.i900playeraddict.com/android/"
];

nbmax = listing.length;
nombre= Math.floor(Math.random() * nbmax)+1;
nombre2 = nombre-1;

newurl = listing[nombre];
//window.open(newurl,"Pubs", 'top=100,left=100,width=500,height=300,status=yes,location=no,resizable=yes');
//self.focus();

	} else {
		
		
		
	}

//document.write("<font size=-5>***nbrchoice***</font>);
//window.status=nbrchoice;

}

