﻿rpicIndex=Math.floor(Math.random() * photos_r.length);

function showNextPic(){
	rtemp=rpicIndex;
	rpicIndex=Math.floor(Math.random() * photos_r.length);
	if(rtemp==rpicIndex)
		rpicIndex=(rpicIndex+1) % photos_r.length
	document.getElementById('pSlider1').src=photos_r[rpicIndex]
	document.getElementById('pSliderLink').href=photos_r[rpicIndex]
}
document.write('<table title=" " align="center" cellpadding="0" height="127" width="817" style=""  cellspacing="0" bgcolor="">' +
'<tr><td align="center" dir="rtl" style="height: 20px;font:11px tahoma;color:#777777; background-image: url(\'topbg.png\');">' + 
'<a title="" style="text-decoration:none;color:#666666;font:12px Tahoma" href="http://www.7learn.com/" target="_blank">'+albumTitle+'</a>'+
'</td></tr><tr><td  align="center" height="128" dir="ltr">'+
'<a target="_blank" href="'+photos_r[rpicIndex]+'" id="pSliderLink"><img border="0" name="img1" src="'+photos_r[rpicIndex]+'" width="817" height="127" id="pSlider1"></a></td>'+
'</tr><tr><td height="20" align=right>'+
'<input type="button" value=" " onClick="showNextPic()" style="font:12px Tahoma;border:0px; background-image:url(\'next_btn.png\');height:24px;width:62px;cursor:hand;">'+
'</td></table>')

