function image_Rotate()
{ 
 number1 = ar_text1.length; 
 increment1 = Math.floor(Math.random() * number1);
 document.open();
 document.write(ar_text1[increment1]);
document.close();
}

