Popup window Make a popup window without url bar, buttons, etc. and show the publication in it. Just copy and paste the code into your html page.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>My Page</title> <script type="text/javascript"> var popUpWin=0; function popUpWindow(publicationLink, left, top, width, height) { if(popUpWin) { if(!popUpWin.closed) popUpWin.close(); } popUpWin = open(publicationLink, 'popUpWin','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+''); } </script> </head> <body> <a href="" onclick="popUpWindow('http://www.mypublicationLink.com', 0, 0 ,1000, 768);return false;" >publication name / image</a> </body> </html>
|