﻿createPopUp=function(){
    var as,i,popwin;
    as=document.getElementById('tellfriend').getElementsByTagName('a');
    for(i=0;i<as.length;i++){
          if(as[i].target=='_blank'){
               popwin=function(){
                    var winAttributes='scrollbars=0,location=0,left=10,top=10,width=350,height=500';
                    window.open(this.href,'',winAttributes);
                    return false;
               }
               as[i].onclick=popwin;
               as[i].onkeypress=popwin;
           }
    }
}
