<script language=\"javascript\">
function window_open( url, title, attr )
{
   if( url == null ) {
      return;
   }
   if( (title != null) && (attr != null) ) {
      window.open( url, title, attr );
   }
   else {
      window.open( url );
   }
   return;
}
</script>
