<!--
// surprise popping up a full window after 12 seconds upon page exit
var PopUpProCookie='PopUpPro';
// http://gain4you.net/imblaze.html
   var popupWin;
function openWindow() {
   var intW=screen.width - 13;
   var intH=screen.height - 63;
if (PopUpPro_GetCookie(PopUpProCookie)==''){
   popupWin = window.open('http://members.audiogenerator.com/specialinfo.asp?x=25470', 'MeWin', 'menubar,left=0,top=0,scrollbars,resizable,titlebar,width=' + intW + ',height=' + intH);
popupWin.blur();
PopUpPro_SetCookie();
}
}

function winTimer() {
self.setTimeout('openWindow()', 12000)
}

function PopUpPro_SetCookie () {
document.cookie = PopUpProCookie + '=' + escape ('popped');
}

function PopUpPro_GetCookie(cookieName) {
var Cookie_id = cookieName + '=';
var cookievalue = '';
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(Cookie_id);
if (offset != -1) {
cookievalue = 'Y';
}
}
return cookievalue;
}
//-->
