/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
function random_imglink(strTxt, strExt, intImages)
{
var myimages=new Array()
var i=1;

do
{
myimages[i-1]=strTxt+i+strExt
i++;
}
while (i<=intImages)
var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<img style="float: left; width: 234px; height: 184px; padding: 5px" align="top" alt="" src="'+myimages[ry]+'" border=0>')

}

