// -------------------------------- URLS DE POPUNDER -------------------------------- //
var urls=new Array();
urls[0]="http://www.ohmygoodies.com/";
//urls[1]="";
//urls[2]="";
//urls[3]="";
//urls[4]="";
//urls[5]="";
//urls[6]="";
//urls[7]="";
//urls[8]="";
//urls[9]="";
// etc.
// -------------------------------- URLS DE POPUNDER -------------------------------- //



var once_per_session=1;

function get_cookie(Name)
{
	var search=Name+"=";
	var returnvalue="";
	if(document.cookie.length>0)
	{
		offset=document.cookie.indexOf(search);
		if (offset!=-1)	// if cookie exists
		{
			offset+=search.length;
			end=document.cookie.indexOf(";", offset);	// set index of beginning of value
			if(end==-1) end=document.cookie.length;	// set index of end of cookie value
			returnvalue=unescape(document.cookie.substring(offset, end));
	    }
   }
	return returnvalue;
}

function loadornot()
{
	if (get_cookie('popunder')=='' || once_per_session==0)
	{
		var win2=window.open(urls[Math.floor(Math.random()*(urls.length))],"","scrollbars=1,resizable=1,toolbar=1,location=1,menubar=1,status=1,directories=0");
		if(win2)
		{
			document.cookie="popunder=yes";
		}
		//win2.blur();
		window.focus();
	}
}