function RandomPicture(PictureName,PicALT,PicWidth,PicHeight,NumOfPicture,AlignLR){
var today = new Date();
var second = today.getSeconds();
var imgnumber,Str;
imgnumber = second%NumOfPicture;
Str = "<img src=\"" + PictureName + imgnumber + ".jpg\"  alt=\"" + PicALT + "\"  width=\"" + PicWidth + "\" height=\"" + PicHeight + "\" border=\"0\"  align=\""+ AlignLR +"\">";
return Str;
}
