/* // coding: latin1
 * ImageHost JavaScript Library
 *
 * Copyright © 2007-2009 Gerard Krijgsman. All rights reserved.
 * Do not distribute this file whole or in part without permission.
 *
 * $Id$
 */

function More()
{
	document.getElementById("morelink").style.display = "none"; 
	document.getElementById("morebox").style.display = ""; 
}

function Upload()
{
	button = document.getElementById("button");
	button.style.fontWeight = "normal";
	button.value = " Uploading... ";
	button.disabled = true;
}

function Upload_v2()
{
	index = document.getElementById("contenttype").selectedIndex;
	type = document.getElementById("contenttype").options[index].value;
	if (type == "undefined")
	{
		alert("Please select a content type from the drop down menu.\n\nSelect 'ADULT content' for mature content (nudity etc) or \n'FAMILY safe' for content that is safe for children to view.")
		return false;
	}
	button = document.getElementById("button");
	button.style.fontWeight = "normal";
	button.value = " Uploading... ";
	button.disabled = true;
	return true;
}