var main = '';
main = document.location.hash;
var publication = main.split("#")[1];
var title = '';
if (publication != undefined){
  var title = publication.split("/");
  title = title[title.length-1];
}
if (main != '#maintrue'){
  if (main == ''){
  if (confirm('Welcome,\n\nYou entered our web site through a Sub Page.\nThe Main Page is located at http://www.competencesystems.com\n\nWould you like us to open the Main Page in a\nseparate window?')){
    window.open('http://www.competencesystems.com');
    alert('Thank you,\n\nIf your browser blocked the oppening of the window,\nplease select the apropriate choice to allow it to open.');
  }else{
    alert('Thank you,\n\nYou can still reach our main page by clicking\nour logo in the upper-left corner of this page.')
  };
  }
}
function openBrWindow(theURL,winName,features) { //v2.0
  var theURL = theURL+'#'+pub;
  window.open(theURL,winName,features);
}
function downloadNow() {
  window.open(publication,'dlnow','toolbar=0,location=no,directories=0,status=0, scrollbars=no,resizable=0,width=1,height=1,top=0,left=0');
  window.focus();
  return true;
}

