//--Thnnis is one of many scripts which are available at:     *---
//--http://www.JavaScript.nu/javascript                     *---
//--This script is FREE, but you MUST let these lines       *---
//--remain if you use this script.                          *---

function printa()
{
  if (navigator.appName == 'Netscape')
    {
      window.print();
    }
  else
    {
      document.body.insertAdjacentHTML('beforeEnd', "<object id='PrHandle' width=0 height=0 classid='CLSID:8856F961-340A-11D0-A96B-00C04FD705A2'></object>");
      PrHandle.ExecWB(6,2);
    }
}

function emailify(before, after)
{
  document.write("<a href='mail"+"to:"+before+"&#64;"+after+"'>"+before+"&#64;"+after+"</a>");
}


function SwitchImage(element, imageSource){		
		document.images[element].src = 'images/' + imageSource;
}

function PrintMenu()
{			
	document.write("<table>");
	document.write("<tr><td><a href='index.html'><img id='NavHome' onMouseOver='SwitchImage(\"NavHome\",\"Nav Light Home.png\");' onMouseOut='SwitchImage(\"NavHome\",\"Nav Home.png\");' src='images/Nav Home.png'/></a></td><tr>");
	document.write("<tr><td><a href='Contact.html'><img id='NavContact' onMouseOver='SwitchImage(\"NavContact\",\"Nav Light Contact.png\");' onMouseOut='SwitchImage(\"NavContact\",\"Nav Contact.png\");' src='images/Nav Contact.png'/></a></td><tr>");
	document.write("</table>");
}

function PrintImage(imageSource, text, width){		
		document.write("<table width='" + width + "'>");		
		document.write("<tr><td align='middle'><img src='" + imageSource + "'></td></tr>")
		document.write("<tr><td align='middle'><i>" + text + "</i></td></tr>")
		document.write("</table>");		
}

function BeginPuff()
{			
	document.write("<table cellpadding='0' cellspacing='0'>");
	document.write("<tr><td colspan='3'><img src='images/Frame Top.gif'/></td></tr>");
	document.write("<tr><td background='images/Frame Pix.gif' width='1'></td>");
	document.write("<td><table width='205' cellpadding='15' cellspacing='0' border='0'><tr><td>");
}

function EndPuff()
{				
	document.write("</td></tr></table></td>");
	document.write("<td background='images/Frame Pix.gif' width='1'></td>");
	document.write("</tr><tr><td colspan='3'><img src='images/Frame Bottom.gif'/></td></tr></table>");
}


function PrintFooter()
{			
	document.write("<table width='100%'>");
	document.write("<tr><td height='70'></td></tr>");
	document.write("<tr><td background='images/HLine.png'></td></tr>");
	document.write("<tr><td><br/>&nbsp;&nbsp;&nbsp;&nbsp;");
	document.write("<a class='thin' href='index.html'>Home</a> | ");
	document.write("<a class='thin' href='Contact.html'>Contact</a> | ");
	document.write("<font color='gray'> © 2007 Elucidon Group Ltd</font></td></tr></table>");
}

