function viewTip()
{
   day = new Date();
   id = day.getTime();
   newWin = window.open('', id, 'width=500, height=220');
   newWin.document.writeln('<HTML><HEAD><TITLE>Viewing PDF files in IE7<\/TITLE><\/HEAD><BODY BGCOLOR="#ffffff">');
   newWin.document.writeln('<DIV ALIGN="center">');
   newWin.document.writeln('<font face= "Trebuchet MS", Arial, sans-serif; SIZE=1;><b>Due to new security settings for IE7,<br>Adobe Acrobat pdf files will not view in the browser.<BR>'); 
   newWin.document.writeln('The following steps will allow you to view pdf files using your reader:<BR><BR>');
   newWin.document.writeln('1- Open your Adobe (Any Version you may have but the latest reader is recommended)<br>');
   newWin.document.writeln('2- Go to Edit>Preferences<br>');
   newWin.document.writeln('3-Click on Internet in the left hand menu<br>(it might be under “ Browser Integration” in older versions)<br>');
   newWin.document.writeln('4-Uncheck the box next to “Display PDF in Browser”, so your PDF opens directly in Adobe<br>if you click on a PDF link not in browser.</b></font>'); 
   newWin.document.writeln('<FORM><INPUT TYPE="button" onClick="window.close\(\)\;" VALUE="Close Window"><\/FORM>');
   newWin.document.writeln('<\/FONT><\/DIV><\/BODY><\/HTML>');
   newWin.document.close();
}
