<!-- 
function MakeLink(){

	line = '<p><A HREF = "'+this.link+'"\n'+

	' onMouseDown = "'+
	this.name+
	'.src = '+
	"'/buttons/"+this.downstate+"'"+
	';"\n'+

	' onMouseUp="'+ this.name + '.src = '+
	"'/buttons/"+this.upstate+"'"+
	';"\n'+

	' onMouseOut = "'+ this.name + '.src = '+
	"'/buttons/"+this.upstate+"'"+
	';"\n'+

	' onMouseOver = "'+ this.name + '.src = '+
	"'/buttons/"+this.overstate+"'"+
	';"\n'+


	' TARGET="_self">'+
	'<IMG NAME="'+this.name+'" SRC="/buttons/'+this.upstate+'" ALT="'+this.name+'" BORDER="0"></A>';

//	alert(line);

	document.write(line+'<br>');

}

function Abutton(name, upstate, overstate, downstate, link)
{
	this.name = name;
	this.upstate = upstate;
	this.overstate = overstate;
	this.downstate = downstate;
	this.link = link;	
	this.MakeLink = MakeLink;

	//preload the images
	upimage = new Image();
	upimage.src = this.upstate;

	overimage = new Image();
	overimage.src = this.overstate;

	downimage = new Image();
	downimage.src = this.downstate;
}	


function LoadButtons(){
	homebtn = new Abutton("home",  "home_black.jpg", "home_blue.jpg", "home_red.jpg", "/");
	aboutbtn = new Abutton("about","about_black.jpg","about_blue.jpg","about_red.jpg","/about.shtml");
	featuresbtn = new Abutton("Features","features_black.jpg","features_blue.jpg","features_red.jpg","/features.shtml");
	faqbtn = new Abutton("FAQ","faq_black.jpg","faq_blue.jpg","faq_red.jpg","/faq.shtml");
    samplebtn = new Abutton("SampleReports","SampleReports_black.jpg","SampleReports_blue.jpg","SampleReports_red.jpg","/SampleReports.shtml");
	demobtn = new Abutton("OrderDemo","orderdemo_black.jpg","orderdemo_blue.jpg","orderdemo_red.jpg","/orderdemo.shtml");
	purchasebtn = new Abutton("Purchase","Purchase_black.jpg","Purchase_blue.jpg","Purchase_red.jpg","/Purchase1.htm");
	servicesbtn = new Abutton("Services","services_black.jpg","services_blue.jpg","services_red.jpg","/services.shtml");
	pricingbtn = new Abutton("Pricing","pricing_black.jpg","pricing_blue.jpg","pricing_red.jpg","/pricing.shtml");
	downloadbtn = new Abutton("Download","download_black.jpg","download_blue.jpg","download_red.jpg","/download.shtml");
	statutesbtn = new Abutton("statutes","statutes_black.jpg","statutes_blue.jpg","statutes_red.jpg","/statutes.shtml");
	contactbtn = new Abutton("Contact","contact_black.jpg","contact_blue.jpg","contact_red.jpg","/contact.shtml");
	supportbtn = new Abutton("Support","support_black.jpg","support_blue.jpg","support_red.jpg","/support.shtml");
	privacybtn = new Abutton("Privacy","priv_black.jpg","priv_blue.jpg","priv_red.jpg","/privacy.shtml");
}

function ShowMenu(){
	homebtn.MakeLink();
	aboutbtn.MakeLink();
	featuresbtn.MakeLink();
	faqbtn.MakeLink();
    samplebtn.MakeLink();
	demobtn.MakeLink();
	purchasebtn.MakeLink();
	servicesbtn.MakeLink();
	pricingbtn.MakeLink();
	downloadbtn.MakeLink();
	statutesbtn.MakeLink();
	contactbtn.MakeLink();
	supportbtn.MakeLink();
	privacybtn.MakeLink();
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

-->

