// JavaScript Document
<!--Begin

function displaySubCat(flager,target){
	var flager = document.getElementById('industry').value;
	if (!(flager=='Restaurant')){
		document.getElementById('subcat').display = 'none';
	}
}

function popInfo(page,wdth,hghtt) 
{
OpenWin = this.open(page, '', 'toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,height=270,width=540');
if (window.focus) {OpenWin.focus()}
	return false;
}
// End -->


<!--Begin
function popNotes(page) 
{
OpenWin = this.open(page, '', 'toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,height=600,width=610');
if (window.focus) {OpenWin.focus()}
	return false;
}
// End -->

<!--Begin
function popExport(page,wdth,hghtt) 
{
OpenWin = this.open(page, '', 'toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,height=10,width=10');
if (window.focus) {OpenWin.focus()}
	return false;
}
// End -->


// No rightclick script v.2.5
// (c) 1998 barts1000
// barts1000@aol.com
// Don't delete this header!

var message="        Contents / Photographs / Design Copyright © 2005\n     AGI Management, Inc."; 
// Message for the alert box
// Don't edit below!

function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// -->