|
Sounds like your best bet would be javascript. I would do a search for a javascript pop-up window.
You would be able to find many that would fit your needs.
This is a generic script from Dreamweavers snippets.
var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height)
{
if(popUpWin)
{
if(!popUpWin.closed) popUpWin.close();
}
popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,m enubar=no,scrollbars=no,resizable=no,copyhistory=y es,width='+width+',height='+height+',left='+left+' , top='+top+',screenX='+left+',screenY='+top+'');
}
Hope this helps
|