var _rt = 1000;

function initialiseSlide()
{
	var getDataString = new String(window.location);	
	var slideLocation = getDataString.search(/slide=1/);	
	if ( slideLocation != -1 ) 
	{
		newlink = document.getElementById("nextImg");
		if ( newlink ) 
		{
			newlink = newlink.value;
			if (_rt<3000) _rt = 3000;
			setTimeout( "window.location.href = '" + newlink + "';", _rt );
		}
	}
}

function SetCookie(cookieName,cookieValue,nDays) {
 var today = new Date();
 var expire = new Date();
 if (nDays==null || nDays==0) nDays=1;
 expire.setTime(today.getTime() + 3600000*24*nDays);
 document.cookie = cookieName+"="+escape(cookieValue)
                 + ";expires="+expire.toGMTString();
}