
createPopUps=function()
{

    var as,i,popwin;

    as=document.getElementsByTagName('a');

    for(i=0;i<as.length;i++)
    {
        if (as[i].target=='_popup')
        {
			popwin=function()
            {
				var winAttributes='scrollbars=0,location=0,left=0,top=0,width=500,height=400';
                window.open('/inc/popup3.asp?pictureURL='+this.href,'',winAttributes);
                return false;
			}
            as[i].onclick=popwin;
            as[i].onkeypress=popwin;
		}
    }
}

window.onload=createPopUps;

