// JavaScript Documentvar timeoutID = null;/* Must pass in the "anchors" ID so that Lytebox can call the correct "onclick" handler... */function loadLytebox() {//eraseCookie('frameCookie');	var x = readCookie('frameCookie'); // Read Cookie	if (!x) {		if (typeof myLytebox != 'undefined') {			// if the myLytebox object exists, start it up!			var a = document.createElement("a");			a.href = "http://tour.innercityxxx.com/warning.html";			a.rel = "lyteframe";			a.title = "<table width='100%'><tr><td align='left' width='20%'><a href='#' onclick='exitSite(); return false;'><img src='http://tour.innercityxxx.com/images/exit.jpg' border=0 alt='Exit'></a></td><td>&nbsp;&nbsp;</td><td align='right' width='30%'><a href='#' onclick=\"setNewCookie('frameCookie');\"><img src='http://tour.innercityxxx.com/images/enter_now.jpg' border=0 alt='Enter'></a></td></tr></table>";			a.rev = "width: 565px; height: 295px; scrolling: no;";			myLytebox.start( a, false, true);			return false;		} else {			// wait 1/10th of a second and attempt loading again...			if (timeoutID) { clearTimeout(timeoutID); }			timeoutID = setTimeout('loadLytebox()', 100);			return false;		}	}		}function createCookie(name,value,days) {	if (days) {		var date = new Date();		date.setTime(date.getTime()+(days*24*60*60*1000));		var expires = "; expires="+date.toGMTString();	}	else var expires = "";	document.cookie = name+"="+value+expires+"; path=/";}/* Read Cookie */function readCookie(name) {	var nameEQ = name + "=";	var ca = document.cookie.split(';');	for(var i=0;i < ca.length;i++) {		var c = ca[i];		while (c.charAt(0)==' ') c = c.substring(1,c.length);		if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);	}	return null;}/* Delete Cookie */function eraseCookie(name) {	createCookie(name,"",-1);}/* Set Cookie */function setNewCookie(name) {	createCookie('frameCookie','welcome',1);	myLytebox.end();}/* Exit */function exitSite() {	myLytebox.end();	window.location="http://www.google.com";	return false;}