// JavaScript Document
window.onload=function() { attachBehaviors(); }; 
// 
function attachBehaviors() { 
 // ID's of the links 
 var newWins = Array ( 
 'link1', 
 'link2', 
 'link3' 
 // etc 
 ); 
 for (j=0;j<newWins.length;j++) { 
 if (document.getElementById(newWins[j])) { 
 document.getElementById(newWins[j]).onclick=function() { return newWin(this.href); } 
 } 
 } 
} 
// 
function newWin(url) { 
 // adjust width and height to taste 
 var w = 600; 
 var h = 700; 
 if ((screen.height) && (h > screen.height)) { h = screen.height-25; } 
 var day = new Date(); 
 var id=day.getTime(); 
 var params = 'location,status,scrollbars,resizable,'; 
 params += 'width='+w+',height='+h+',top=0,left=0'; 
 open(url,id,params); 
 return false; 
} 
