
function correctPNG() // correctly handle PNG transparency in Win IE 5.5 or higher.
{
   if (/Firefox/.test(navigator.userAgent)) return;
   if (/Opera/.test(navigator.userAgent)) return;
   if (navigator.appName != "Microsoft Internet Explorer") return;
   if (/MSIE 7.0/.test(navigator.appVersion)) return
   //alert(navigator.appName)

   for(var i=0; i<document.images.length; i++)
   {
      var img = document.images[i];
      var imgName = img.src.toUpperCase();
      if (imgName.substring(imgName.length-3, imgName.length) == "PNG")
      {
         img.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + img.src + "',sizingMethod='scale')";
         img.style.height = img.height;
         img.style.width = img.width;
         img.src = 'file:///C:/Documents and Settings/Vitas/Desktop/gago ka omar/test/pics/spacer.gif';
         //alert(strNewHTML);
         //i = i-1;
      }
   }
}

function writeMenuBegin()
{
   document.write("<table border='0' cellspacing='6'>");
}

function writeMenuEnd()
{
   document.write("</table>");
}

function writeMenuEntry(imageUri, linke)
{
   document.write("<tr><td align='center'>");
   document.write("<a href='" + linke + "' target='subcontent'><img border='0' src='" + imageUri + "'></a>");
   document.write("</td></tr>");
   document.write("<tr><td>");
   document.write("<img width='130' src='pics/div.png'>");
   document.write("</td></tr>");
}

function changeGuideText(texte) {
   getElementById('guidetag').innerHTML = texte;
}

function writeJobContact() {
   document.write("<br>");
   document.write("<div class='footnote'>");
   document.write("Freelancers and non-professionals, such as students, are accepted, as long as they reach our standards. <b>Metro Manila residents only.</b><br>");
   document.write("<br>");
   document.write("Send your resumes / portfolio / employment inquiries to:<br>");
   document.write("<br>");
   document.write("<div class='address'>");
   document.write("#16 Malambing St.<br>");
   document.write("UP Village<br>");
   document.write("Diliman, Quezon City<br>");
   document.write("1101 Philippines<br>");
   document.write("<a class='blu' href='mailto:vitas_jobs@vitasdevelopment.com'>vitas_jobs@vitasdevelopment.com</a><br>");
   document.write("</div>");
   document.write("<br>");
   document.write("For emails, please indicate the proper subject heading in your message, stating the exact position you are applying for, or inquiring about.<br>");
   document.write("<br>");
   document.write("Thank you.<br>");
   document.write("<br>");
   document.write("</div>");
}

function open_win(uri)
{
   window.open(uri,"_blank","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=yes, width=700, height=400");
}
