Hi This is ScorpionZ
I have Created a window that holds an Id of Particular Product
having code this:
<head>
<script type="text/javascript">
function poponload()
{
testwindow= window.open ('image_viewer_window.php?images=<?=$prod_id?>', "Image","location=1,status=1,scrollbars=3,width=452,height=218");
testwindow.moveTo(215,350);
}
</head>
<body>
<td bgcolor="#F8F8FF"><a href="#" onclick="return poponload()">View Images</a></td>
</body>
// Talking about $prod_id it is an Id already in this Page of Particular Product and i am Trying to viewing its more Images but in Popup Window........ but it is not Throwing that $prod_id... as it is some id.... that links to next popup with images belongs to that Product
The Scenario is that
when i click on "View Images"
it Sends this url on popup window
http://............../image_viewer_window.php?images=
After = it must be the Id of that Particular Product but No Id
Any Help will be highly Appreciated
Thanks And Regards
Scorpionz