<script language="JavaScript"> function gotoTM(){ theURL = location.search; theURL = '' + theURL.substring(1, theURL.length); window.open.location.href = (theURL);
}
</script> <a href="javascript:gotoTM()"><img src="images/popup.gif" width="509" height="429" border="0"></a>
================= Why wouldn't this open the link into a new window? For some reason it won't work. I've tried many variations with 'window.open' but it just keeps opening in the same window (which is a scrollbar less pop-up)
how about this
window.open(theURL,"New Window","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=540,height=600")
THANKS! Works perfect!