function mymenu(mytype,pos){

	var link_template='<a href="url" title="words">text</a><br><br>';
	var butt_template='<input alt="words" id="mybut" type="button" value="text" onclick="window.location=\'url\'" />';
	var link_table   ='<td width="120" align="center"><a href="url" title="words">text</a></td>';
	var t="";

	var links = [
    {url:"index.html", 			words:"Holly Derrick Swimming Front Page", 				text: "Home Page"},
	{url:"http://sites.google.com/site/hollyderrickswimming/dates-and-pr", 	words:"Dates and prices details for the next terms", 	text: "Dates & Prices"},
	{url:"contact.html", 		words:"Contact Details At Holly Derrick Swimming", 		text: "Contact"},
	{url:"directions.html", 	words:"Home To Get To Holly Derrick Swimming", 			text: "How to Find Us"},
	{url:"gallery.html", 		words:"Pictures From Holly Derrick Swimming", 			text: "Gallery"},
	{url:"guestbook.php", 		words:"Read and sign Holly\'s guest book", 				text: "Guest Book"},
	{url:"http://sites.google.com/site/hollyderrickswimming/news", 			words:"Braking News From Holly Derrick Swimming", 		text: "News"}
	];

	var str='';
	switch(mytype){
		case "buttons":
			t=butt_template;
			break;
		case "links":
			t=link_template;
			break;
		case "link_table":
			t=link_table;
			str='<table border="0" cellspacing="0" cellpadding="0"><tr bgcolor="#cccccc">';
			break;
		default:
			t=link_template;
			break;
	}
			


	for (i in links){
		var s=t;
		s=s.replace("url",  links[i].url);
		s=s.replace("words",links[i].words);
		s=s.replace("text", links[i].text)
		//alert(s);
		str+=s;
	}
	
	if (mytype=="link_table") str+='</tr></table>';

	document.getElementById(pos).innerHTML = str;

}