function getMenu(flashMenuExists) {
	if (flashinstalled == 2) {
		if (flashversion>=8) {
			if(flashMenuExists=="true") {
				getFlashMenu();
			} else {
				showHtmlMenu();
			}
		} else {
			showHtmlMenu();			
		}
	} else {
		showHtmlMenu();			
	}
}

function getFlashMenu() {
	document.write('<object type="application/x-shockwave-flash" data="flash/menu.swf" width="150" height="225">\n');
  document.write('<param name="movie" value="flash/menu.swf" />');
  document.write('<param name="bgcolor" value="#000000"/>');
  document.write('</object>\n');
}
function getGallery(which,index) {
	if(which=="prints") {
		document.write('<object type="application/x-shockwave-flash" data="flash/print_gallery.swf?imageType='+which+'&index='+index+'" width="770" height="630">\n');
	  document.write('<param name="movie" value="flash/print_gallery.swf?imageType='+which+'&index='+index+'" />');
		document.write('<param name="wmode" value="transparent"/>');
	  document.write('<param name="bgcolor" value="#000000"/>');
	  document.write('</object>\n');
	} else {
		document.write('<object type="application/x-shockwave-flash" data="flash/gallery.swf?imageType='+which+'&index='+index+'" width="770" height="630">\n');
	  document.write('<param name="movie" value="flash/gallery.swf?imageType='+which+'&index='+index+'" />');
		document.write('<param name="wmode" value="transparent"/>');
	  document.write('<param name="bgcolor" value="#000000"/>');
	  document.write('</object>\n');
	}
}

function showHtmlMenu() {
	document.getElementById('htmlMenu').style.display = "block";
}

function show(what) {
	document.getElementById(what).style.display = "block";
	document.getElementById(what).style.position = "absolute";
	document.getElementById(what).style.width = "600px";
	document.getElementById(what).style.right = "0";
	document.getElementById(what).style.top = "92px";
}

function hide(what) {
	document.getElementById(what).style.display = "none";	
}