<!--
companyName="RoLanka International";
companyAddress="155 Andrew Dr, Stockbridge, GA 30281";
companyTelephone="770-506-8211";
companyFax="770-506-0391";
companyEmail="rolanka@rolanka.com";

function lastModifiedDate(lmdate) {
 var months=new Array(13);
 months[1]="January";
 months[2]="February";
 months[3]="March";
 months[4]="April";
 months[5]="May";
 months[6]="June";
 months[7]="July";
 months[8]="August";
 months[9]="September";
 months[10]="October";
 months[11]="November";
 months[12]="December";

 var lmonth=months[lmdate.getMonth() + 1];

 var date=lmdate.getDate();
 var year=lmdate.getYear();
 if (year < 2000) 
 year = year + 1900; 

 document.write ("Last Modified on " + lmonth + " " + date + ", " + year);
}

function copyrights() {
 document.write ("Copyright © 2004 " + companyName + "<br>");
}

function footer(lmdate) {
 copyrights();
 lastModifiedDate(lmdate);
}

function moreInfo()
{
 document.write ("<P align=\"center\"><I>For More Information Contact:</I><BR>");
 document.write ("<BR>");
 document.write (companyName + "<BR>");
 document.write (companyAddress + "<BR>");
 document.write ("Tel: " + companyTelephone + "<BR>");
 document.write ("FAX: " + companyFax + "<BR>");
 document.write ("Internet: <A href=\"mailto:" + companyEmail + "\">" + companyEmail + "</A></P>")
}

function popup(mylink, windowname,w,h)
{
  if (! window.focus)
     return true;
  var href;
  
  if (typeof(mylink) == 'string')
     href=mylink;
  else
     href=mylink.href;

  window.open(href, windowname, 'width=' + w + ',height=' + h + ',toolbar=no,resizable=no,scrollbars=no');
  return false;
}

//-->

