// JavaScript Document

var openWindow = function(winname) {
	var win = ColdFusion.Window.getWindowObject("win");
	var txt = "";
	switch(winname) {
		case 'redknights':
			win.setTitle("Red Knights TN 2");
			txt+="<table width='100%'><tr><td><img border='0' src='images/redknightssmall.jpg' /></td>";
			txt+="<td valign='top'>The Red Knights are an internationally recognized motorcycle club made up of active";
			txt+=" and retired firefighter personnel. Red Knights TN 2 is a local chapter of this organization.";
			txt+=" Red Knights TN 2's objective is to raise money for financially needy volunteer fire departments.";
			txt+=" Volunteer fire departments fill out applications and apply to us for this service.</td></tr>";
			txt+="<tr><td colspan='2'>&nbsp;</td></tr><tr><td colspan='2' align='center'><strong>Contact Information</strong></td></tr>";
			txt+="<tr><td align='right' valign='top'>Address:</td><td align='left'>P.O. BOX 1096<br />Clinton, TN 37716</td></tr>";
			txt+="<tr><td align='right' valign='top'>Phone:</td><td align='left'>865-457-0659<br />865-988-6618</td></tr>";
			txt+="<tr><td align='right'>Email:</td><td align='left'><a href='mailto:RedKnights@9-11RemembranceRide.com'>RedKnights@9-11RemembranceRide.com</a></td></tr>";
			txt+="<tr><td align='right'>Web Site:</td><td align='left'><a href='http://www.redknightstn2.com' target='_blank'>www.redknightstn2.com</a></td></tr>";
			txt+="</table>";
			win.body.update(txt);
			win.setContentSize(470, 340);
			break;
		case 'blueknights':
			win.setTitle("Blue Knights TN III");
			txt+="<table width='100%'><tr><td><img border='0' src='images/blueknightssmall.gif' /></td>";
			txt+="<td valign='top'>The Blue Knights are an internationally recognized motorcycle club made up of active";
			txt+=" and retired police officers. Blue Knights TN III is a local chapter of this organization.";
			txt+=" The Blue Knights will be raising funds for the Blue Knights COPSRUN (Concerns of";
			txt+=" Police Survivors).  Blue Knight COPSRUN offers assistance and support to the families";
			txt+=" of fallen police officers. The Blue Knights COPSRUN motto is, \"They will never stand";
			txt+=" alone\", reminds us that no survivors will be forgotten.</td></tr>";
			txt+="<tr><td colspan='2'>&nbsp;</td></tr><tr><td colspan='2' align='center'><strong>Contact Information</strong></td></tr>";
			txt+="<tr><td align='right' valign='top'>Address:</td><td align='left'>P.O. Box 12068<br />Knoxville, TN 37938</td></tr>";
			txt+="<tr><td align='right' valign='top'>Phone:</td><td align='left'>865-925-1405<br />865-673-9943</td></tr>";
			txt+="<tr><td align='right'>Email:</td><td align='left'><a href='mailto:BlueKnights@9-11RemembranceRide.com'>BlueKnights@9-11RemembranceRide.com</a></td></tr>";
			txt+="<tr><td align='right'>Web Site:</td><td align='left'><a href='http://www.blueknightstn3.com' target='_blank'>www.blueknightstn2.com</a></td></tr>";
			txt+="</table>";
			win.body.update(txt);
			win.setContentSize(550, 340);
			break;
		default:
	}
	
	ColdFusion.Window.show("win");
	//win.show();

	//alert(winname);
}
var nav = function(frmname,dest,callback,errorhandler,frm) {
	try {
		if(frm==undefined)
			ColdFusion.navigate(frmname,dest,callback,errorhandler);
		else
			ColdFusion.navigate(frmname,dest,callback,errorhandler,'GET',frm);
	}
	catch(e) {
		alert(e.message);
	}
}
var callback = function(){
//	alert('callback');
} 

<!--- The error handler pops an alert with the error code and message. --->
var errorhandler = function(errorCode,errorMessage){
		alert("[In Error Handler]" + "\n\n" + "Error Code: " + errorCode + "\n\n" + "Error Message: " + errorMessage);
} 

