var szRootPath="http://download.globalcad.com/";
var trialVersion = new Array("1.2","1.2","1.2","1.2");
var brochureVersion = new Array("1.2","1.2","1.2","1.2");
var trialVersionSize = new Array("11.0 MB","12.5 MB","16.4 MB","8.6 MB");
var brochureVersionSize = new Array("470 Kb","470 Kb","455 Kb","405 Kb");
var statementValue = new Array();
statementValue[0] = "Plantasia Home Edition is the unrivalled, interactive encyclopedia of garden plants and flowers. With one search, access authoritative, reliable content that brings the exciting world of plants alive for the whole family. Plantasia Home Edition supports Windows 98, ME, NT, 2000 and Windows XP.";
statementValue[1] = "Plantasia Professional is the unrivalled, interactive encyclopedia of plants and flowers. With one search, access authoritative, reliable content that brings the exciting world of plants alive for experienced gardeners and horticulturalists. Plantasia Professional supports Windows 98, ME, NT, 2000 and Windows XP.";
statementValue[2] = "This product supports AutoCAD, AutoCAD LT, Architectural Desktop, Autodesk Building Systems, Autodesk Civil 3D and Autodesk Map. Expert software for landscape design and architecture, LandARCH Professional Edition includes 2D/3D design libraries, an interactive plant database, project workflow tools and much, much more. Scheduling tools let you easily export data and create bill of materials!";
statementValue[3] = "This product supports AutoCAD, AutoCAD LT, Architectural Desktop, Autodesk Building Systems, Autodesk Civil 3D and Autodesk Map. Expert software for landscape design and architecture, LandARCH Standard Edition includes 2D design libraries, block management and drawing setup tools.";
var trialPage = new Array();
trialPage[0] = "GcadPh2007Trial.exe";
trialPage[1] = "GcadPp2007Trial.exe";
trialPage[2] = "GcadLp2007Trial.exe";
trialPage[3] = "GcadLs2007Trial.exe";
var brochurePage = new Array();
brochurePage[0] = "GcadPh2007.pdf";
brochurePage[1] = "GcadPp2007.pdf";
brochurePage[2] = "GcadLp2007.pdf";
brochurePage[3] = "GcadLs2007.pdf";

function InitList ()
{
        var defaultProduct = 0;
	document.Downloads.Product.selectedIndex = defaultProduct;
	setVariables (defaultProduct, 0);
}

function setVariables(index, asset)
{
	var product = document.Downloads.Product;
	var requested = document.Downloads.Requested;
	var version = document.Downloads.Version;
	var size = document.Downloads.Size;
	var statement = document.Downloads.Statement;
	var redirect = document.Downloads.redirect;

	if (requested.length != 1)
	{
		requested.length = 0;
		requested.options[0] = new Option ("Trial Version");
		requested.options[1] = new Option ("Product Brochure");

		requested.options[asset].selected = true;
	}

	version.value = (asset == 0) ? trialVersion[index] : brochureVersion[index];
	size.value    = (asset == 0) ? trialVersionSize[index] : brochureVersionSize[index];
	statement.value = statementValue[index];
}
function checkIt(index, asset)
{
	var required = "Please complete all the required fields!"
	var form = document.Downloads
	if (form.Full_Name.value == "" || form.Postcode.value == "" || form.Telephone.value == "" || form.Email.value == "")
	{
		window.alert(required)
		return false;
	}
	else
	{
		finalStage(index, asset)
	}
}

function finalStage(index, asset)
{
	var statement = document.Downloads.Statement;
        statement.value = "";

	if (asset == 0)
	{
		document.Downloads.redirect.value = "http://www.plant.info/info/downloads.htm";
		window.open(szRootPath + trialPage[index], "responsePage", "width=1,innerWidth=1,height=1,innerHeight=1,left=4000,screenX=0,top=0,screenY=0,menubar=false,resizable=false,scrollbars=false,status=false,toolbar=false");
	}
	else
	{
		window.open(szRootPath + brochurePage[index], "responsePage", "width=640,innerWidth=640,height=550,innerHeight=550,left=30,screenX=30,top=30,screenY=30,menubar=false,resizable=true,scrollbars=true,status=false,toolbar=true")
		document.Downloads.redirect.value = "http://www.plant.info/info/downloads.htm"
	}
}
