// ~*~ Start:javascript:new_window02 ~*~ 

function openWindow01(url, scroll){
newWin = open(url,'','width=810,height=600,top=225,left=100' )
}
function openWindow02(url){
newWin = open(url,'','width=650,height=550,top=225,left=100' )
}

/*

to make this code work on a page: 
put this around the text or image that is the link:

<a href="http://www.bbt.com" onClick="openWindow01(this.href) ; return false">Offsite link >></a>
<a href="http://www.bbt.com" onClick="openWindow02(this.href) ; return false">Calculator link >></a>

<a href="page.html" onclick="NewWindow(this.href,'uniquename','410','410','yes');return false;">text here</a>

*/