<!-- hide JavaScript from non-JavaScript browsers
// www.spamlook.com - Popup Windows
// Copyright (C) 2003 Digit Design Ltd.
// By P.Fasola - January 2003
// Modified: 30.04.2003
// Modified: 28.05.2003
// Modified: 28.01.2004

function openRefundPolicy() 
{
window.open("/legal/RefundPopUp.shtml","newwindow",
"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizeable=0,width=495,height=335,left=300,top=155") 
}

function openLogonHelp() 
{
window.open("/support/LogonHelp.shtml","newwindow",
"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizeable=0,width=495,height=255,left=300,top=155") 
}

function openEmailSubscriptions() 
{
notice = window.open("/subscriptions/noticeTemp.html","newwindow",
"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizeable=0,width=368,height=180,left=300,top=260");
setTimeout('notice.close()',25000)
}

function openUnderDevelopment() 
{
notice = window.open("/support/underDev.html","newwindow",
"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizeable=0,width=320,height=80,left=330,top=280");
setTimeout('notice.close()',5000)
}

function openCheck() 
{
window.open("/support/popups.shtml?check","newwindow",
"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizeable=0,width=495,height=328,left=300,top=155") 
}

function openReplace() 
{
window.open("/support/popups.shtml?replace","newwindow",
"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizeable=0,width=495,height=528,left=300,top=155")  
}

function openTestResults() 
{
notice = window.open("/faq/testResults.html","newwindow",
"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizeable=0,width=368,height=545,left=300,top=125");
setTimeout('notice.close()',120000)
}

function openSpammers() 
{
notice = window.open("/overview/iconSpammers.html","newwindow",
"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizeable=0,width=270,height=70,left=330,top=280");
setTimeout('notice.close()',15000)
}

function openTrusted() 
{
notice = window.open("/overview/iconTrusted.html","newwindow",
"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizeable=0,width=270,height=70,left=330,top=280");
setTimeout('notice.close()',15000)
}

// 28.01.2004 Code for multiple licences popup ...

function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
href=mylink;
else
href=mylink.href;
window.open(href, windowname, 'width=527,height=154,left=260,top=175,scrollbars=no');

//  16.01.2005 This was for worldpay, when the quantity was enabled as changable:  
//  window.open(href, windowname, 'width=527,height=454,left=260,top=175,scrollbars=no');

return false;
}


//--> end hide JavaScript