function targetBlank(object,target) {

  // Get the URL 
  link = object.href;

  // If target == "_self", don't ask confirmation from user
  if(target=='_self') {
	window.open(link,target);
  }
  else {

     
	// Open the page
	window.open(link,target);
    }
      
}