function switchPhone(){
	var phones = new Array('1-888-886-6103',
			   '1-888-882-8232');
	var   a   =   Math.floor(Math.random()*phones.length);
	if(a==phones.length)
		a=phones.length-1;
	document.write(phones[a]) ;
}
