here's what i'm trying to do....this is also related to the popup window...
say for example i have a list of name...
1. which when you click name1, a pop up window will open and display contact information...
name1
name2
name3
- minimize pop-up window
- click on name2....heres where the problem comes...
i wanted to display the name2 contact information on the same pop window but the popup window doesnt display since it is currently "minimized"
or can i display it in a new popup window?
<SCRIPT LANGUAGE="JavaScript">
function winpop(url)
{
window.open(url,'name','height=500,width=580');
}
</script>
</head>
<a href="#" onclick="javascript:winpop('./page2.php?variable2=$variable1');return false;">$variable1</a>
any idea?