function divlink(url,wind) {
 if(wind == 1){
   window.open(url,'blank','');
 }
 else {
   window.location = url;
 }
}