/*
function openRandomPop()
{
 document.cookie = 'PopupOpened=yes; path=/'
 rndNum=Math.random();
 ranPg = parseInt(pgList.length * rndNum * 10);
 ranPg = ranPg%pgList.length;
 if(isNaN(ranPg))
 {
  ranPg=1;
  }

 newWin=window.open(pgList[ranPg], 'randomPOP', 'top=1000,left=1000,width=300,height=300,scrollbars=0');
// window.focus();
 newWin.moveTo((screen.width-740-10)/2, (screen.height-487-50)/2);
 newWin.focus();
 }

if(document.cookie.indexOf('PopupOpened=')==-1)
{
 pgList='/popup/popup.htm';
 pgList=pgList.split(', ');
 openRandomPop();
 }
 
function openWin(pageURL, wd, ht)
{
 wdth=wd;
 hgt=ht;
 if (wdth=='') wdth=300;
 if(hgt=='')hgt=300;

 newwin=window.open(pageURL, 'popupWin', 'width='+ wdth +',height='+ hgt +',top=100,left=100,scrollbars=yes,resizable=1')
 newwin.focus();
 }

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
*/
