// JavaScript Document


//var mobile = (/iphone|ipad|ipod|android|blackberry|mini|windows\sce|palm/i.test(navigator.userAgent.toLowerCase()));   
  //  if (mobile) {   
          
   // alert("Currently updating page for Mobile Device \n Please email management@renfrewshirecabco.co.uk or call 0141 889 0000");
//	document.location = "http://www.google.co.uk"; 
//	}  


var sW = screen.availWidth;
var sH = screen.availHeight;
var centre = sW / 2;



var mainLeftBorder, mainRightBorder;
var mainWidth, mainHeight;
if (sW != 800) {
mainLeftBorder = ((sW - 1024) / 2); ///set left border position
mainRightBorder = mainLeftBorder + 1004; ///set right border position

} 
else  {
mainLeftBorder = 0;
mainRightBorder = 1004;
}

mainWidth = mainRightBorder - mainLeftBorder;
mainHeight = 840;

if (sW < 800)
{
	mainLeftBorder = 0;
	mainRightBorder = sW;
	mainWidth = 1024;
	centre = 512;
}

document.getElementById("loadingTable").style.top = 100;
document.getElementById("loadingTable").style.width = mainWidth;
document.getElementById("loadingTable").style.left = (sW - mainWidth) / 2;

