function relTags() {
	if (document.getElementsByTagName) {
		var anchors = document.getElementsByTagName( "a" );
		for (var loop = 0; loop < anchors.length; loop++) {
			var anchor = anchors[loop];
			if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external") {
				anchor.target = "_blank";
			}
		}
	}
}

window.onload = function() {
relTags();
} 
function cl(t){	
	if (t.defaultValue==t.value) t.value = '';
}

function insertFlash() {
document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="300" height="213">');
      document.write('<param name="allowScriptAccess" value="sameDomain" />');
      document.write('<param name="movie" value="../photos/welcome_movie.swf" />');
      document.write('<param name="quality" value="high" />');
      document.write('<param name="bgcolor" value="#ffffff" />');
      document.write('<embed src="../photos/welcome_movie.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="300" height="213" />');
	document.write('</object>');
} 
function showPic (whichpic) {
	document.getElementById('bigpic').style.visibility = "hidden";
	document.getElementById('bigpic').src = whichpic.href;
 	return false;
}
function visPic() {
	document.getElementById('bigpic').style.visibility = "visible";
}