
  	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="686" height="253" title="header">');
    document.write('<param name="movie" value="/Header.swf" />');
    document.write('<param name="quality" value="high" />');
    document.write('<embed src="/Header.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="686" height="253" </embed>');
  	document.write('</object>');

function loadURL(destination) {
	
    // Debug Code
    var _debug = false;
    var functionName = "[loadURL]";
    if(_debug) { alert(functionName + ": begin"); }
    
    try {

        // If debugging, let's see what our parameter is
        if(_debug) { alert(functionName + ": destination parameter = '" + destination + "'"); }

	    var pageLocation = "";

	    switch(destination)
	    {
		    case "home":
			    pageLocation = "/";
			    break;			
		    case "company":
			    pageLocation = "/company/company.html";
			    break;
		    case "solutions":
			    pageLocation = "/solutions/solutions.html";
			    break;
		    case "service":
			    pageLocation = "/services/services.html";
			    break;
		    case "customersuccess":
			    pageLocation = "/customer/customers.html";
			    break;
		    case "requestdemo":
			    pageLocation = "/requestdemo.aspx";
			    break;
		    case "clientlogin":
			    pageLocation = "/client/";
			    break;
		    default: alert("Unknown parameter for getURL destination parameter '" + destination + "'");
	    }

        if(pageLocation != "") {
            if(_debug) { alert(functionName + ": Loading page '" + pageLocation + "'"); }
            window.location = pageLocation;
        }

        
    } catch(e) {
        window.status = functionName + " ERROR: " + e.message;
        alert(functionName + " ERROR: " + e.message); 
        throw e;
    }
	
}
