// JavaScript Document
	function checkoption() 
	{
		if (self.document.forms[0].search_var.selectedIndex == 3) 
		{
			location.href="genre.asp";
			window.status = "Loading the Genre listing..."
		}
		if (self.document.forms[0].search_var.selectedIndex == 4) 
		{
			location.href="comprehensive.asp";
			window.status = "Loading the Comprehensive Movie listing..."
		}
	}
						
	function checksubmit()
	{
		var string;
		string = self.document.forms[0].search_input.value;
		if (self.document.forms[0].search_var.selectedIndex == 3 || self.document.forms[0].search_var.selectedIndex == 4)
		{
			if (self.document.forms[0].search_var.selectedIndex == 3)
			{
				window.status = "The Genre List is loading..."
				location.href="genre.asp";
			}
			if (self.document.forms[0].search_var.selectedIndex == 4)
			{
				location.href="comprehensive.asp";
				window.status = "The Comprehensive Movie list is loading..."
			}
		}
		else
		{
			if (string.length == "")
			{
		    	alert("Please enter in a value.");
			}
			else
			{
		       	self.document.forms[0].submit();
			}
		}
	}