Try this: <a href="#" onclick="window.open ('yourURL','windowName','menubar=0,resizable=0,location=0,scrollbars=0,status=0,width=200,height=200'); return false;">Link text</a> If you want it to have scrollbars, or a menu bar, or anything like that, change that variable to a 1 rather than a 0.
Thanks BrandonGregory.. Even I was also looking for something like this... Is there any other method apart from this? How easy is it to use Ajax for these kind of work..??
Try to use: <a href="javascript:window.open ('yourURL','windowName','menubar=0,resizable=0,location=0,scrollbars=0,status=0,width=200,height=200'); return false;">Link text</a> You could also do it with a button with <input type="button" value="Open popup" onclick="window.open ('yourURL','windowName','menubar=0,resizable=0,location=0,scrollbars=0,status=0,width=200,height=200');" /> samrathacks: You can't use AJAX for opening windows. AJAX is just like an extension to javascript. Asynchrous Javascript And Xml. AJAX is simply used when making remote calls to other files etc.