OK, I have the random display of pics setup, but I don't want to resize each picture I put on. What is the right html code to add to the javascript/html box to get a size in there. I currently have the following:
<table>
<tr >
<td width="50" length="50">
<p></p>
<script language="JavaScript">
<!--
/*
Random Image Link Script- By JavaScript Kit(
http://www.javascriptkit.com)
Over 200+ free JavaScripts here!
Updated: 00/04/25
*/
function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="../pics/1.jpg"
myimages[2]="../pics/2.jpg"
myimages[3]="../pics/3.jpg"
myimages[4]="../pics/4.jpg"
myimages[5]="../pics/5.jpg"
myimages[6]="../pics/6.jpg"
//specify corresponding links below
var imagelinks=new Array()
imagelinks[1]=""
imagelinks[2]=""
imagelinks[3]=""
imagelinks[4]=""
imagelinks[5]=""
imagelinks[6]=""
var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<a href='+'"'+imagelinks[ry]+'"'+'><img src="'+myimages[ry]+'" border=0>[/url]')
}
random_imglink()
//-->
</script>
</td>
</tr>
<p></p>
<tr>
<td>
<p align="center"><font face="arial" size="-2">This free script provided by</font>
<font face="arial, helvetica" size="-2">
JavaScript
Kit</font></p>
</td>
</tr>
</table>
As you can see I created tables and it still doesn't seem to work. Any suggestions or anytihng you notice I did wrong.