function goNewWin() {

// Begin. Specify URLs to randomly select from and pop-under. Add or take away freely.
var popunder=new Array()

popunder[0]="http://www.movieswamp.com"
popunder[1]="http://www.bleachepisodes.tv"
popunder[2]="http://www.narutoepisodes.tv"
popunder[3]="http://www.clevelandshowepisodes.tv"
popunder[4]="http://www.watchamericandad.tv"
popunder[5]="http://www.shopwn.com"
popunder[6]="http://www.animeswamp.com"
popunder[7]="http://www.videoswamp.com"
popunder[8]="http://www.gameplaytube.com"
popunder[9]="http://games.movieswamp.com/"
popunder[10]="http://www.ytidol.com/"
popunder[11]="http://www.stewiejustsaidthat.com"
popunder[12]="http://www.amazon.com/gp/redirect.html?ie=UTF8&location=http%3A%2F%2Fwww.amazon.com%2Fcomputer-video-games-hardware-accessories%2Fb%3Fie%3DUTF8%26node%3D468642&tag=shopwn-20&linkCode=ur2&camp=1789&creative=9325"
popunder[13]="http://www.familyguyepisodes.tv"

var one_time=1


// That's it! Don't edit the code below unless you're really good. :-P //








function get_cookie(Name) {
var search = Name + "="
var returnvalue = "";
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(search)
if (offset != -1) { // if the cookie exists
offset += search.length
end = document.cookie.indexOf(";", offset); // set the index of beginning value
if (end == -1) // set the index of the end of cookie value
end = document.cookie.length;
returnvalue=unescape(document.cookie.substring(offset, end))
}
}
return returnvalue;
}
function loadornot(){
if (get_cookie('popunder')==''){
load_pop_power()
document.cookie="popunder=yes"
}
}
function load_pop_power(){
win2=window.open(popunder[Math.floor(Math.random()*(popunder.length))],"MovieSwamp_Network",'toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,resizable=1')
win2.blur()
window.focus()
}
if (one_time==0)
load_pop_power()
else
loadornot()

}
