var frequencyCap = 24; //интервал времени в часах

function setCookie(cookieName,cookieValue, expirehours)

 {
  if (frequencyCap > 0)
	{var today = new Date();
	var expire = new Date();
	expire.setTime(today.getTime() + 3600000 * frequencyCap);
	document.cookie = cookieName+"="+escape(cookieValue)+ ";expires="+expire.toGMTString() + "; path=/";
	}
	else
	{
	document.cookie = cookieName+"="+escape(cookieValue) + "; path=/";
	 }
 }
  function ReadCookie(cookieName) 
	{var theCookie=""+document.cookie;
	var ind=theCookie.indexOf(cookieName);
	if (ind==-1 || cookieName=="") return ""; 
	var ind1=theCookie.indexOf(';',ind);
	if (ind1==-1) ind1=theCookie.length; 
	return unescape(theCookie.substring(ind+cookieName.length+1,ind1));
	}
if (ReadCookie('girlsblog') != 'yes')
	 {

document.write("<div id='PopWin' onclick='DivOff()'><div id='PopTit' onclick='DivOff()'><a title='Закрыть' href='javascript: PopShow()'>Закрыть [X]</a><center><a target=_blank href=http://xpodruga.com/?wmid=738&sid=859><img border=0 src=http://girlsblog.net/images/foto.jpg width=200 height=170></a></center></div></div>");
window.onscroll=MovePop; // перемещать при скроллинге
}

function DivOff() { // функция закрытия рича
document.all['PopWin'].style.visibility='hidden';
setCookie('girlsblog','yes', frequencyCap); //после закрытия ставим куки 
}

function PopShow() { // функция открытия поп-андера
window.open('http://ohhporevo.com/?wmid=738&sid=859');
window.focus();
DivOff();
}

function MovePop() {
document.all['PopWin'].style.top=document.body.scrollTop+150;
}
