Forum Moderators: open
<a href = "#" onclick=chooseSite(url1,url2);>go</a>
Then the JS pseudo would be like this
chooseSite(url1,url2){
//display a popup box with
//the choices site1 or site2
if(they clicked site1){
//redirect to site1
}//if
else{
//redirect to site2
}//else
}//chooseSite
Thanks
What you could do is have an absolutely positioned div that appears with the two options. There are a lot of options for this type of script, just look for a "lightbox script" that supports HTML and you should be able to get it working the way you want.
You *could* even style it to look like a pop-up (although you'll have to sniff the browser and OS to make sure you fake the right chrome).