var cookie="testimonpopunder4";
popup("index.html");
function popup(filename){
if (getcookie(cookie)==""){
var popup = window.open("eBook-testimonials.html", "","height=600,width=800,top=0,left=0,location=yes,menubar=yes,resizable=yes,scrollbars=yes,status=yes,titlebar=yes,toolbar=yes,directories=yes");
popup.blur();
window.focus();
setcookie();
}
}
function getcookie(cookieName) {
var id = cookieName + "=";
var cookievalue = "";
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(id);
if (offset != -1) {
cookievalue = "x";
}
}
return cookievalue;
}
function setcookie () {
var today = new Date();
var expdate = new Date(today.getTime() + 1 * 24 * 60 * 60 * 1000);
document.cookie = cookie
+ "="
+ escape ("done")+ ";expires=" + expdate.toGMTString();
}