	function flag_click(but)
	{
		if (but==1)
		{
			document.fComp.flag_b.value="1";
			document.fComp.submit();
		}
	}

	function uninstall_click(but)
	{
		if (but==1)
		{
			document.f_uninstall.click_un.value="1";
			document.f_uninstall.submit();
		}
	}

	function SendForm()
	{
		if ( document.fDownload.cname.value == "" )
    	{
        	alert ( "Please fill in the 'First Name' box." );
    	}
		else
		{
			if ( document.fDownload.lname.value == "" )
    		{
        		alert ( "Please fill in the 'Last Name' box." );
	    	}
			else
			{
				if ( document.fDownload.phone.value == "" )
    			{
					alert ( "Please fill in the 'Phone' box." );
				}
				else
				{
						if ( document.fDownload.maila.value == "" )
    					{
							alert ( "Please fill in the 'E-Mail' box." );
						}
						else
						{
							document.fDownload.submit();
						}
				}
			}
		}
	}
	
