
function chooseMsg(msgNum)
{
	var outval = '';
			   
	var one = '<b>Indoor Electric Flying -</b> <i><b>Heights:  </b></i>From 6 - 9 pm in the gym at <a \ href="/flyinglocations/heightcumberland.html" target="contFrame">Heights Cumberland \
      Presbyterian Church</a> at Moon and Academy<i>.</i><br> The gym is in the NE corner of \
      the building.Contact <a href="mailto:paul.r.carbin@intel.com">Paul Carbin</a> for more information.';
	  
	var two = '<b>Indoor Electric Flying -</b> <i><b>Montgomery Church of Christ:</b></i>&nbsp;From 6:30 - 10:00pm in the gym at <a href="/flyinglocations/montchurch.html">Montgomery \
	Church of Christ</a> between Pennsylvania and Louisiana on Montgomery.  Contact <a href="mailto:dreed129@comcast.net">Dave Reed</a> for more information.';
	
	var three = '<b>Indoor Electric Flying -</b><i><b>Sandia Presbyterian Church:</b></i> From 7:00 - 9:00pm at <a href="/flyinglocations/sandiapres.html">Sandia Presbyterian \
	Church</a> off Paseo del Norte between Eubank and Browning. Contact <a href="mailto:vicnewton@comcast.net">Vic Newton</a> for more information.';
	
	var four = '<b>Night Flying -</b> <i><b>Maloof Air Park:</b></i>&nbsp;From sundown til the last person leaves. \
			  Contact <a href="mailto:cobracj429@aol.com">Jim Whenry</a> for more information.';
			  
	var five = '<b>Club Meetings</b> are held the <i><b>first Thursday of each month \
      </b></i>at Asbury Methodist Church, 10000 Candelaria (at Morris, between Eubank &amp; Juan Tabo). \
      We are in the large room at the far west side of the church. Doors open \
      at 6:30 and the meeting runs from 7 pm until 9 pm.';
	  
	var six = '<b>Officer Meetings</b> are held at 6:30 pm the <i><b>Wednesday the week before the club meeting each month.</b> \
	<b> <font color="#FF0000">Club members are welcome to attend!</font></b> </i>Location: <a href="http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=1717+Louisiana+Blvd,+Albuquerque,+NM&sll=37.0625,-95.677068&sspn=47.483365,104.589844&ie=UTF8&hq=&hnear=1717+Louisiana+Blvd+NE,+Albuquerque,+Bernalillo,+New+Mexico+87110&ll=35.095157,-106.568391&spn=0.006031,0.012767&z=17">Vics Office 1717 Louisiana (Constitution and Louisiana)</a>. \
      For questions contact the Club President at <a href="mailto:president@arcconline.com">president@arcconline.com .</a>';
	  
	  var twelve = '<b>Indoor Free Flight</b> is held the <i><b>first Sunday</b> of every month from 7-9pm\
		Location: <a href="http://hobbies-n-stuff.com/">Grant Middle School (north of Lomas on Easterday)</a>. \
      For questions contact Stu Cornwell at <a href="mailto:scornw@aol.com">scornw@aol.com</a>';
	  
	var scale = '<b>Scale Meet -</b> <i><b>Maloof Air Park:</b></i>&nbsp; \
			  Contest Director <a href="mailto:treasurer@arcconline.com">Ray Dukart</a>';


	var comp = '<b>Competition Fun Fly -</b> <i><b>Maloof Air Park:</b></i>&nbsp; \
			  Contest Director <a href="mailto:ceandra@comcast.net">Chuck Andraka</a>';


	var labor = '<b>Labor Day Airshow -</b> <i><b>Maloof Air Park:</b></i>&nbsp; \
			  Contest Director <a href="mailto:vicnewton@comcast.net">Vic Newton</a>';


	var heli = '<b>Helicopter Fun Fly -</b> <i><b>Maloof Air Park:</b></i>&nbsp; \
			  Contest Director <a href="mailto:nmavp-dist-8@earthlink.net">Mark Johnston</a>';

	var slowstik = '<b>Slow Stick Contest -</b> <i><b>Balloon Fiesta Park:</b></i>&nbsp; \
			  Hosted by Hobby Pros';

		switch(msgNum)
		{	
			case 1: outval = one;
			break;
			case 2: outval = two;
			break;
			case 3: outval = three;
			break;
			case 4: outval = four;
			break;
			case 5: outval = five;
			break;
			case 6: outval = six;
			break;
			case 7: outval = scale;
			break;
			case 8: outval = comp;
			break;
			case 9: outval = labor;
			break;
			case 10: outval = heli;
			break;
			case 11: outval = slowstik;
			break;
			case 12: outval = twelve;
			break;

			default: outval = '';
		}
		

	  //alert(outval);
	  return outval;
}

/*function ietruebody(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function ddrivetip(thetext, thecolor, thewidth){
if (ns6||ie){
if (typeof thewidth!="undefined") tipobj.style.width=thewidth+"px"
if (typeof thecolor!="undefined" && thecolor!="") tipobj.style.backgroundColor=thecolor
tipobj.innerHTML=thetext
enabletip=true
return false
}
}

function positiontip(e){
if (enabletip){
var curX=(ns6)?e.pageX : event.clientX+ietruebody().scrollLeft;
var curY=(ns6)?e.pageY : event.clientY+ietruebody().scrollTop;
//Find out how close the mouse is to the corner of the window
var rightedge=ie&&!window.opera? ietruebody().clientWidth-event.clientX-offsetxpoint : window.innerWidth-e.clientX-offsetxpoint-20
var bottomedge=ie&&!window.opera? ietruebody().clientHeight-event.clientY-offsetypoint : window.innerHeight-e.clientY-offsetypoint-20

var leftedge=(offsetxpoint<0)? offsetxpoint*(-1) : -1000

//if the horizontal distance isn't enough to accomodate the width of the context menu
if (rightedge<tipobj.offsetWidth)
//move the horizontal position of the menu to the left by it's width
tipobj.style.left=ie? ietruebody().scrollLeft+event.clientX-tipobj.offsetWidth+"px" : window.pageXOffset+e.clientX-tipobj.offsetWidth+"px"
else if (curX<leftedge)
tipobj.style.left="5px"
else
//position the horizontal position of the menu where the mouse is positioned
tipobj.style.left=curX+offsetxpoint+"px"

//same concept with the vertical position
if (bottomedge<tipobj.offsetHeight)
tipobj.style.top=ie? ietruebody().scrollTop+event.clientY-tipobj.offsetHeight-offsetypoint+"px" : window.pageYOffset+e.clientY-tipobj.offsetHeight-offsetypoint+"px"
else
tipobj.style.top=curY+offsetypoint+"px"
tipobj.style.visibility="visible"
}
}

function hideddrivetip(){
if (ns6||ie){
enabletip=false
tipobj.style.visibility="hidden"
tipobj.style.left="-1000px"
tipobj.style.backgroundColor=''
tipobj.style.width=''
}
}

document.onmousemove=positiontip
*/