function Redir(){
	var rand=Math.floor(Math.random()*2);
	var site=new Array();
	site[0]="http://www.gatopan.com.ar";
	site[1]="http://www.phreeoni.com.ar";
	document.location=site[rand]
}

