function popupcode()
{var x=document.getElementsByTagName('a');for(var i=0;i<x.length;i++)
{if(x[i].className=='popwindow')
{x[i].onclick=function(){return popwindow(this.href)}
x[i].title+='Opens in a new window';}}}
window.onload=popupcode;function popwindow(url)
{newwindow=window.open(url,'name','height=400, width=530, resizable=yes, scrollbars=yes, status=yes');if(window.focus){newwindow.focus()}
return false;}
