/* cs loader - <<Nils>>*/

var thepage = -1
var myurl = -1

function pagedetection()
{
var myurl = document.URL
thepage = myurl.indexOf('home.html');
if (thepage > -1) {thepage = 1;}
if (myurl == "http://www.cafesoc.co.uk/") {thepage = 1;}
}

function loader()
{
pagedetection();
if (thepage != -1) {
updated();
}
if (thepage == -1) {
popupWindows();
updated();
}
}

window.onload=loader;
