LinkComment = new Array(
  "Words from the author",
  "Whats new on this version",
  "What is DMC ?",
  "Mission template share section",
  "Mission share section",
  "Sound share section", 
  "Minimum requirements to run DMC",
  "Detailed installation notes",
  "Execution notes",
  "OnLine Manuals",
  "Learn what others have to say, or teach others what they whant to know",
  "Download DMC",
  "Subscribe to the DMC NewsLetter",
  "Contact me for any questions or suggestions",
  "Download DMC")

function TabHighLight (tab,CommentId){ 
    tab.bordercolorlight = "#FF0000"
    tab.bordercolordark = "#FF0000";
    window.status = LinkComment[CommentId];  
}

function TabNormal(tab) { 
    tab.bordercolorlight = "#0000FF"
    tab.bordercolordark = "#0000FF";
    window.status = '';
}

function LinkHighLight (lnk,CommentId){ 
    window.status = LinkComment[CommentId];  
}

function LinkNormal(lnk) { 
    window.status = '';
}

function PopUpWindow(url,width,height) {
  newwin=window.open(url,'newwin','width='+(width+20)+',height='+(height+25)+',scrollbars=yes,resizable=yes');
}

function PopUpBrowse(url) { 
  newBrowseDMC=window.open(url,'BrowseDMC','width=755,height=475,toolbar=yes,location=no,directories=yes,status=yes,menubar=no,scrollbars=yes,resizable=yes');
}

