<!-- hide from old browsers
// JavaScript Variables
   var saveStatus   = "Rags Int., Inc.";
   var emailSubject = "Rags Int., Inc.";

// -----------------------------------------
// noSpam() (send email message)
// -----------------------------------------
function noSpam(usrName, mailServer){
   location.href="mailto:" + usrName + "@" + mailServer + "?subject=" + emailSubject;
   return;
}

// -----------------------------------------
// ragsMail() (send email message)
// -----------------------------------------
function ragsMail(subject){
   if (subject != undefined)
       location.href="mailto:rags@rags-int-inc.com" + "?subject=" + subject;
   else
       location.href="mailto:rags@rags-int-inc.com" + "?subject=" + emailSubject;
   return;
}

// -----------------------------------------
// updateStatus() (onMouseOver)
// -----------------------------------------
function updateStatus(textStr) {
   window.status = textStr;
   return true;
}

// -----------------------------------------
// clearStatus() (onMouseOut)
// -----------------------------------------
function clearStatus() {
   window.status = saveStatus;
   return true;
}

// -----------------------------------------
// ftpRagsInc()
// -----------------------------------------
function ftpRagsInc() {
   window.open("ftp://www.rags-int-inc.com/");
}

// -----------------------------------------
// showJpeg()
// -----------------------------------------
function showImage(imageURI, titleText, bodyText) {
   jpegWindow = window.open("", "JpegWindow",
      "scrollbars=1,toolbar=0,width=1024,height=768,resizable=1");
   jpegWindow.document.clear();
   jpegWindow.document.write("<HTML><HEAD>");
   jpegWindow.document.write("<TITLE>" + titleText + "</TITLE></HEAD>");
   jpegWindow.document.write("<BODY><CENTER>" + bodyText + "<br>");
   jpegWindow.document.write("<img src=\"" + imageURI + "\"");
   jpegWindow.document.write(" alt=\"" + bodyText + "\"><br>");
   jpegWindow.document.write("<br><br><br></CENTER></BODY></HTML>");
   jpegWindow.focus();
   jpegWindow.document.close();
}

// end of: hide JavaScript from old browsers -->
