<!--
function RandomIMGx () {
today=new Date();
jran=today.getTime();
var number = 10;
var random_number="";
ia=9301;
ic=49297;
im=233280;
jran = (jran*ia+ic) % im;
random_number = Math.ceil( (jran/(im*1.0)) *number);
random_number1=random_number + 1;
random_number2=random_number1 + 1;

// Loads the appropriate image and text color based on random number.
var xstr='<table width=100%><tr><td><img src="imgxin/n' + random_number +'.jpg" height=100 width=100 ></td>';
xstr=xstr+ '<td><img src="imgxin/n' + random_number1 + '.jpg" height=100 width=100 ></td>';
xstr=xstr+'<td><img src="imgxin/n' + random_number2 +  '.jpg" height=100 width=100 ></td></tr>';

quotes = new Array ;
quotes[1] ='Humanity is a universal binding';
quotes[2] ='Preparing for a disasters is minimizing damage';
quotes[3] ='Volunteering is a display of humanitarian';
quotes[4] ='Chidhood, Youthhood, Volunteer, Manhood';
quotes[5] ='The first casualties of conflict are innocents';
quotes[6] ='Be prepared! learn to save a life' ;
quotes[7] ='Disasters do not know who and where it struck next';
quotes[8] ='Giving Blood is giving life';
quotes[9] ='Humanity is a universal binding';
quotes[10] ='Preparing for a disasters is minimizing damage';
quotes[11] ='Volunteering is a display of humanitarian';
quotes[12] ='Chidhood, Youthhood, Volunteer, Manhood';

var qtstr=quotes[random_number] ;
qtstr='<tr><td colspan=3 >'+ qtstr + '</font></td></tr>';

document.write(xstr);
document.write(qtstr);
document.write('</table>');
}

//-->