Hello,
I have the same problem embedding upload pictures on table.
Can you tell me how you solve the problem.
Tanks in advance.
Regards,
E. Pierre
There's a couple of steps I used. First I created a template page with the ad embeded into the template (you could do multiple templates if you wanted to change ads, if you are using them, if not then just 1 blank template page).
Next I used the following script:
<script type="text/javascript" language="Javascript">
function PopupPic(sPicURL) {
window.open("GOTtmpl1.aspx?" + sPicURL, "GirlsOfTexas",
"resizable=1,HEIGHT=800,WIDTH=650, scrollbars=1");
}
</script>
Lastly, I created a gallery page with my thumbs laid out and calling the script from above on each thumb. Here's an example of that table code:
<table align="center" style="width: 100%">
<tr>
<td valign="top"><a href="javascript:PopupPic('models/brooke/brooke4-O8-0001.jpg')">
<img src="models/brooke/thumbs/brooke4-O8-0001.jpg" alt="Brooke 1" /></a></td>
<td valign="top"><a href="javascript:PopupPic('models/brooke/brooke4-O8-0316.jpg')">
<img src="models/brooke/thumbs/brooke4-O8-0316.jpg" alt="Brooke 2" /></a></td>
<td valign="top"><a href="javascript:PopupPic('models/brooke/brooke4-O8-0317.jpg')">
<img src="models/brooke/thumbs/brooke4-O8-0317.jpg" alt="Brooke 3" /></a></td>
</tr></table>
Also, you could dynamically resize your full size pics for the thumbs but I use a seperate thumbnail and full size image file.
No promo for my site but you can check out the code in action at Girlsoftexasmag.com, go to the model page and pick any model. These are non-nude but Maxim style, so if you prefer not to view that's understandable.