/*
 * Javascript for Richard McCord Design
 */


function insertnavlist() {
	document.getElementById("navlinks").innerHTML =
			'<p><a href="index.htm">home</a></p>' +
			'<p><a href="gallery.htm">gallery</a></p>' +
			'<p><a href="classes.htm">classes</a></p>' +
			'<p><a href="shows.htm">shows</a></p>' +
			'<p><a href="students.htm">students</a></p>' +
			'<p><a href="travel.htm">travel</a></p>' +
			'<p><a href="statement.htm">statements</a></p>' +
			'<p><a href="links.htm">links</a></p>' +
			'<p><a href="contact.htm">contact</a></p>';
}


function insertfooter() {
	document.getElementById("footer").innerHTML =
		'<p>&#169;2007, 2008, Richard Harrison McCord, all rights reserved.</p>'
}

function showimage(imgsrc, w, h) {
	var ww = w + 20;
	var hh = h + 50;

	var winSpecs = "'status=0,resizable=yes,width=" + ww + ",height=" + hh + "'";
  var win = window.open("", 'pic', winSpecs);
  win.document.open();
  win.document.clear();
  win.document.write("<html>\n<head>\n<title>Full Size Image</title>\n</head>\n<body>\n" +
										 "<table>\n" +
										 "<tr>\n" +
										 "<td>\n" +
  									 "<a href='javascript:window.close()'>" +
										 "<img src='images/close_feedback.gif' border='0' align='right' alt='Close Window'>" +
										 "</a><br>\n" +
										 "</td>\n" +
										 "</tr>\n" +
										 "<tr>\n" +
										 "<td>\n" +
										 '<img src="' + imgsrc + '" alt="image" width="' + w + '" height="' + h + '" border="1">\n' +
										 "</td>\n" +
										 "</tr>\n" +
										 "</table>\n" +
										 "</body>\n</html>");
  win.document.close();
  win.focus();
}


function showauvillar() {

	var winSpecs = "'status=0,resizable=yes,width=700,height=580'";
  var win = window.open("", 'pic', winSpecs);
  win.document.open();
  win.document.clear();
  win.document.write(
  	"<html>\n<head>\n<title>Auvillar Slide Show</title>\n</head>\n<body>\n" +
		"<table>\n" +
		"<tr>\n" +
		"<td>\n" +
		"<a href='javascript:window.close()'>" +
		"<img src='images/close_feedback.gif' border='0' align='right' alt='Close Window'>" +
		"</a><br>\n" +
		"</td>\n" +
		"</tr>\n" +
		"<tr>\n" +

		"<td style='border: 1px solid black;'>\n" +
		'<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="672" height="524">\n' +
		'<param name="movie" value="travel/Auvillar_Trip.swf">\n' +
		'<param name="quality" value="high">\n' +
		'<embed src="travel/Auvillar_Trip.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="672" height="524"></embed>\n' +
		'</object>\n' +
		"</td>\n" +

		"</tr>\n" +
		"</table>\n" +
		"</body>\n</html>");
  win.document.close();
  win.focus();
}