// JavaScript Document
function WriteWebPopUp(choice)
{
	switch(choice) {
		case 1:
		//Web Presence PopUp
		var Output = "\n<h4>Web Presence Packages</h4>";
			Output += "\n<p>Be accessible for customer internet searches and queries with a low cost starter website! You supply the content (text and relevant photos) and <strong>engility</strong> will put together a striking and robust website for you.  This package includes:</p>";
			Output +="\n<ul>";
			Output +="\n<li><span>>> </span>Domain name (1 year)</li>";
			Output +="\n<li><span>>> </span>Web hosting (1 year)</li>";
			Output +="\n<li><span>>> </span>One email address</li>";
			Output +="\n<li><span>>> </span>Home page</li>";
			Output +="\n<li><span>>> </span>Service, Product or Purpose page</li>";
			Output +="\n<li><span>>> </span>Contact page</li>";
			Output +="\n</ul>";
			Output +="\n<div class=\"wrap_table\">";
			Output +="\n<table>";
			Output +="\n<tr class=\"firstrow\">";
			Output +="\n<td>Templated design:</td><td class=\"price\">£120</td>";
			Output +="\n</tr>";
			Output +="\n<tr>";
			Output +="\n<td>Bespoke design:</td><td class=\"price\">£200</td>";
			Output +="\n</tr>";
			Output +="\n</table>";
			Output +="\n</div>";
			Output +="\n<a class=\"closebox\" onmouseover=\'this.style.cursor=\"pointer\" \' onfocus=\'this.blur();\' onclick=\"WriteWebPopUp()\" >Close</a>";
		document.getElementById("WebPopUp").innerHTML = Output;
		break; //End Web presence PopUp
		case 2:
		//PopUp 2
		var Output = "\n<h4>Website Refreshes</h4>";
			Output += "\n<p>Update the look of your website and ensure as many people as possible can view your site as it was intended.</p>";
			Output += "\n<p><strong>engility</strong> can also futureproof your website by separating content from format--a hangover from legacy table-based websites.</p>\n<p>";
			Output += "\n<p>Contact <strong>engility</strong> about a refresh and you'll get a free assessment covering:</p>";
			Output +="\n<ul>";
			Output +="\n<li><span>>> </span>Level of mixed content & format</li>";
			Output +="\n<li><span>>> </span>Browser compatibility</li>";	
			Output +="\n<li><span>>> </span>Accessibility standards compliance</li>";
			Output +="\n<li><span>>> </span>Security assessment</li>";
			Output +="\n</ul>";
			Output += "\n<p>You'll also get a full proposal for refreshing your current website including updating of any logo, colour scheme and artwork.</p>";
			Output +="\n<a class=\"closebox\" onmouseover=\'this.style.cursor=\"pointer\" \' onfocus=\'this.blur();\' onclick=\"WriteWebPopUp()\" >Close</a>";
		document.getElementById("WebPopUp").innerHTML = Output;
		break; //End PopUp 2
		case 3:
		//PopUp 3
		var Output = "\n<h4>Web Solutions</h4>";
			Output += "\n<p>If your web needs extend beyond a static website then consider <strong>engility</strong> for all your web projects.   We can engineer all the following:</p>";
			Output +="\n<ul>";
			Output +="\n<li><span>>> </span>Online stores and payments</li>";
			Output +="\n<li><span>>> </span>Content management systems</li>";	
			Output +="\n<li><span>>> </span>phpBB forums</li>";
			Output +="\n<li><span>>> </span>Image and media galleries</li>";
			Output +="\n<li><span>>> </span>Password protected access</li>";
			Output +="\n<li><span>>> </span>Dynamic, interactive web content</li>";
			Output +="\n</ul>";
			Output += "\n<p>Get in touch about such projects using our <a href=\"http://www.engility.com/contact.php\">contact</a> details and <strong>engility</strong> will provide you will a project proposal that meets all your specifications.</p>";
			Output +="\n<a class=\"closebox\" onmouseover=\'this.style.cursor=\"pointer\" \' onfocus=\'this.blur();\' onclick=\"WriteWebPopUp()\" >Close</a>";
			document.getElementById("WebPopUp").innerHTML = Output;
		break; //End PopUp 3
		case 4:
		//PopUp 4
		var Output = "\n<h4>Graphics</h4>";
			Output += "\n<p>For high-quality web and print graphics go no further than <strong>engility</strong>.  We understand the pixel! Using industry standard techniques we can:</p>";
			Output +="\n<ul>";
			Output +="\n<li><span>>> </span>Develop web page composites</li>";
			Output +="\n<li><span>>> </span>Manipulate existing digital images</li>";	
			Output +="\n<li><span>>> </span>Produce logos</li>";
			Output +="\n<li><span>>> </span>Liaise with print shops</li>";
			Output +="\n</ul>";
			Output += "\n<p>For web- and broadcast-standard animations and movies <strong>engility</strong> can provide</p>";
			Output +="\n<ul>";
			Output +="\n<li><span>>> </span>Flash animations</li>";
			Output +="\n<li><span>>> </span>Web movies</li>";	
			Output +="\n<li><span>>> </span>Offline Final Cut Pro editting</li>";
			Output +="\n</ul>";
			Output +="\n<a class=\"closebox\" onmouseover=\'this.style.cursor=\"pointer\" \' onfocus=\'this.blur();\' onclick=\"WriteWebPopUp()\" >Close</a>";
			document.getElementById("WebPopUp").innerHTML = Output;
		break; //End PopUp 4
		default:
		var Output = "";
		document.getElementById("WebPopUp").innerHTML = Output;
	}
}

