Ciao, devo scrivere circa trenta funzioni windows.open come riportato qui sotto

civita.onRelease=function() {
getURL("javascript:window.open(\"/chiese.asp?id=1\", \"\", \"height=\" + (460) + \", width=\" + (610) + \", top=60, left=260\");;void(0)");
}
malve.onRelease=function() {
getURL("javascript:window.open(\"/chiese.asp?id=2\", \"\", \"height=\" + (460) + \", width=\" + (610) + \", top=60, left=260\");;void(0)");
}

duomo.onRelease=function() {
getURL("javascript:window.open(\"/chiese.asp?id=3\", \"\", \"height=\" + (460) + \", width=\" + (610) + \", top=60, left=260\");;void(0)");
}

scrivendole così se volessi cambiare le dimensioni della finestra dovrei intervenire su tutte e trenta le funzioni.
Mi sapreste indicare una funzione che mi permetta di intervenire sulle finestre una sola volta?
Grazie