function output(output_string) {
	alert(output_string);
	document.getElementById("outputbox").innerHTML += "<p>" + output_string + "</p>";
}

function updateFlash() {
	if (confirm("You are using an older version of the flash player which may need to be updated in order to display " +
		"this website correctly. Click OK to go to the Macromedia website to download a newer version, or cancel to continue " +
		"using your current version.")) {
		window.open("http://www.macromedia.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash", "getflash");
	}
}

function goRequestPortfolio() {

	// Photographer
	var photographer = document.getElementById("photographerlist").selectedIndex;
	photographer = document.getElementById("photographerlist").options[photographer].value;

	// Redirect
	window.location = photographer + ".php?mode=request";
}