function sfHover() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}

function openGallery(URL)
{
	window.open(URL,null,"status=no ,toolbar=no,menubar= no,location=no,width=825,height=500,resizable=no,scrollbars=no,left=0,top=0");
}

function openScreenshot(screenshot)	// variables include screenshot file name
{
	var x=window.open('', '','width=800,height=600,resizable=yes,scrollbars=yes,left=0,top=0');
	x.document.write('<html><body><img src="graphics/' + screenshot + '" /></body></html>');
	x.focus();
}

function openFlash(segment)
{
	flashwindow=window.open("flash/" + segment,"mywindow","location=0,status=0,scrollbars=0,width=750,height=550,resizable=0");
}

function insertFlash(flash,w,h)
{

document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width='"+w+"' height='"+h+"' id='"+flash+"' align='middle'>");
document.write("<param name='allowScriptAccess' value='sameDomain' />");
document.write("<param name='wmode' value='transparent' />");
document.write("<param name='movie' value='flash/"+flash+".swf' /><param name='quality' value='high' /><param name='scale' value='exactfit' /><param name='bgcolor' value='#ffffff' /><embed src='flash/"+flash+".swf' quality='high' scale='exactfit' bgcolor='#ffffff' width='"+w+"' height='"+h+"' name='"+flash+"' align='middle' allowScriptAccess='sameDomain' wmode='transparent' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />");
document.write("</object>");

}

function FrameSwitch(url)

{
	parent.main.location.href = url;
}

function openWin(URL,w,h)
{
	window.open(URL,null,"status=yes ,toolbar=yes,menubar= no,location=yes,width= " + w + ",height= " + h + ",resizable=yes,scrollbars=yes,left=0,top=0");
}
