function clearEmail(input) {
	if (input.value == "Your email address") {
		input.value = "";
	}
}

function clearSearch(input) {
	if (input.value == "Enter keyword or title") {
		input.value = "";
	}
}

function embedQuickTime(asset, width, height)
{
	document.write("<object id='movie1' classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' width='"+width+"' height='"+height+"' codebase='http://www.apple.com/qtactivex/qtplugin.cab'>");
		document.write("<param name='src' value='" + asset +"' />");
		document.write("<param name='controller' value='true' />");
		document.write("<param name='autoplay' value='true' />");
		document.write("<param name='enablejavascript' value='true' />");
		document.write("<param name='scale' value='tofit' />");
		document.write("<param name='kioskmode' value='true' />");
		document.write("<param name='bgcolor' value='#000000' />");
			
		document.write("<embed ");
			document.write("src='" + asset + "'");
			document.write("name='movie1'");
			document.write("width='"+width+"'");
			document.write("height='"+height+"'");
			document.write("autoplay='true'");
			document.write("scale='tofit'");
			document.write("kioskmode='true'");
			document.write("bgcolor='#000000'");
			document.write("type='video/quicktime'");
			document.write("pluginspage='http://www.apple.com/quicktime/download/'");
			document.write("enablejavascript='true'");
			document.write("controller='true'");
		document.write("></embed>");
	document.write("</object>");
}

function sortResources(selectObj) {
	var getLocation=window.location.href;
	if (getLocation.indexOf("filter.php") > -1) {
		if (getLocation.indexOf("sort=") > -1) {
			var getFocus=getLocation.substring(getLocation.indexOf("theme=") + 6, getLocation.indexOf("&title="));
			var getTitle=getLocation.substring(getLocation.indexOf("title=") + 6, getLocation.indexOf("&sort="));
		}else{
			var getFocus=getLocation.substring(getLocation.indexOf("theme=") + 6, getLocation.indexOf("&title="));
			var getTitle=getLocation.substring(getLocation.indexOf("title=") + 6, getLocation.length);
		}
		window.location.href="filter.php?theme="+getFocus+"&title="+getTitle+"&sort="+selectObj.value;
	}
}
function readMore() {
	document.getElementById("more").style.display="block";
}
