// usage : <a href="link" onclick="return spawn('URL', 'name', 'width=100, height=100')">Link</a>
// more accessible and allows right click link functionality to work (also works with no JS at all)
function spawn(URL,winName,features) {
/*features example - note you must pass in width & height first (IE 4+ Mac bug) width=620,height=460,directories=no,location=no,menubar=no,scrollbars=yes,toolbar=no,status=no,resizable=no,top=0,left=0*/
var newWindow=window.open(URL,winName,features);
newWindow.focus();
}
