/*
 * Popup code generated by PopUpMaster Pro from 
 * http://popupmaster.com
 * Copyright (c)2003, Steve Shaw, takanomi.com
 */
var cookie="SRUYjm8a";
var popup;
var height=740;
var width=550;
var left=(screen.width/2)-(550/2);
var top=(screen.height/2)-(740/2);
setTimeout("entrypop('http://www.webwinz.com/subpop.html');",6000);
function entrypop(filename){
if (getcookie(cookie)==""){
popup = window.open(filename, "","height="+height+",width="+width+",top="+top+",left="+left+",location=no,menubar=no,resizable=yes,scrollbars=no,status=no,titlebar=no,toolbar=no,directories=no");
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() + 7 * 24 * 60 * 60 * 1000);
document.cookie = cookie
+ "="
+ escape ("done")+ ";expires=" + expdate.toGMTString();
}