<!--************************************************************************************--!>
//  Loader (v1.0) - This JavaScript is protected by copyright (c) and MUST NOT be used	  \\
//				    without a licence - available from wcsgroup.co.uk				      \\
//--************************************************************************************--\\
//																						  \\
//  See the Loader (v1.0) User Guide													  \\
//  for full instuctions on setting up and using this script.							  \\
//					   		 															  \\
//--************************************************************************************--\\
//--                  <<<< DO NOT EDIT ABOVE OR BELOW THIS LINE >>>>					--\\
//--************************************************************************************--\\

var bg = document.getElementById("Loading").getAttribute("bgColor");
var img = document.getElementById("Loading").getAttribute("imgURL");

document.write("<div id='Loader' style='background:" + bg + " url(" + img + ") no-repeat center; height:100%; left:0px; position:absolute; top:0px; width:100%; z-index:9999;'></div>");

function Load() {
	document.getElementById("Loader").style.display = "none";
}
