var doc = document;

doc.write('<script type="text/javascript" src="/global/scripts/idge.js"></script>');
doc.write('<script type="text/javascript" src="/global/scripts/prototype/prototype-1.6.0.3.js"></script>');
doc.write('<script type="text/javascript" src="/global/scripts/prototype/scriptaculous-1.8.1-shrinkvars.js"></script>');
if (pageType == "index") {
	doc.write('<script type="text/javascript" src="/scripts/feature_scroller.js"></script>');
}

var trace = function(obj) {
	console.log(obj);
}

function adCall (site,zone,genre,sub_genre,global_id,article_type,article_id,esrb) {
	if (site.indexOf("gameboy_advance") != -1) {
		dartSite = site.replace(/\_/g, "");
	} else {
		dartSite = site;	
	}
	dartZone = zone;
	dartGenre = genre;
	dartSubGenre = sub_genre;
	dartGlobalID = global_id;
	dartArticleType = article_type;
	dartArticleID = article_id;
	dartEsrb = esrb;
	ord=Math.random()*10000000000000000;
	var dartArgs = {
		dartSite: dartSite,
		dartZone: dartZone,
		dartGenre: dartGenre,
		dartSubGenre: dartSubGenre,
		dartGlobalID: dartGlobalID,
		dartArticleType: dartArticleType,
		dartArticleID: dartArticleID,
		dartEsrb: dartEsrb
	}
	dart.init(dartArgs);
}

var dart = {
	dartSite: null,
	dartZone: null,
	dartGenre: null,
	dartSubGenre: null,
	dartGlobalID: null,
	dartArticleType: null,
	dartArticleID: null,
	dartEsrb: null,
	init: function(args) {
		dart.dartSite = args.dartSite;
		dart.dartZone = args.dartZone;
		dart.dartGenre = args.dartGenre;
		dart.dartSubGenre = args.dartSubGenre;
		dart.dartGlobalID = args.dartGlobalID;
		dart.dartArticleType = args.dartArticleType;
		dart.dartArticleID = args.dartArticleID;
		dart.dartEsrb = args.dartEsrb;
	}
}

var ads =  {
	refreshTimer: function() {
		var timeLagger = window.setTimeout(function(){
			ads.refresh();
			ads.refreshTimer();
		},20000);
	},
	refresh: function() {
		// leaderboard refresh
		if($('leader_iframe')) {
			var leaderTarget = $('leader_iframe');
			var newLeader = new Element ('iframe',{
				id: 'leader_iframe',
				src: $('leader_iframe').src,
				className: $('leader_iframe').className,
				height: leaderTarget.height,
				width: leaderTarget.width,
				frameBorder: 0,
				marginHeight: 0,
				marginWidth: 0,
				vspace: 0,
				hspace: 0,
				scrolling: 'no'
			});
			$('leader_iframe').remove();
			$('leaderboard').update(newLeader);			
		}
		//right hand refresh
		if($('right_iframe')) {
			var towerTarget = $('right_iframe');
			var newTower = new Element ('iframe',{
				id: 'right_iframe',
				src: $('right_iframe').src,
				className: $('right_iframe').className,
				height: towerTarget.height,
				width: towerTarget.width,
				frameBorder: 0,
				marginHeight: 0,
				marginWidth: 0,
				vspace: 0,
				hspace: 0,
				scrolling: 'no'
			});
			$('right_iframe').remove();
			$('ad').update(newTower);			
		}
	}
}

//ads.refreshTimer();

gnet_headliner_sold = false;
gnet_sold_headliner_path = null;

	function setHeadliner() {
	//alert(gnet_headliner_path)
	if (!gnet_sold_headliner_path) {
		return;
	} else {
		sponsorTarget = $('sponsorship');
		removeHeadliner(sponsorTarget);
		sponsorTarget.innerHTML = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="450" height="95"><param name="movie" value="' + gnet_sold_headliner_path + '"> <param name="quality" value="high"><param name="wmode" value="transparent"><embed src="' + gnet_sold_headliner_path +'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="450" height="95" wmode="transparent"></embed> </object>'
	}
	$('sponsorship').style.display = 'block';
}

function removeHeadliner(target) {
	nodes = target.childNodes;
	for (i=0; i < nodes.length; i++) {
		target.removeChild(target.childNodes[0]);	
	}
}

function pageSponsor (cssPath) {
	newLink = doc.createElement("link");
	newLink.setAttribute("href",cssPath);
	newLink.setAttribute("rel","stylesheet");
	newLink.setAttribute("type","text/css");
	headElement = doc.getElementsByTagName("head")[0];
	headElement.appendChild(newLink);
}

function resizeImages() {
	//if (!$('body')) { return; };
	maxWidth = 603;
	divList = $A($('body').getElementsByClassName("inline_image"));
	if (divList.length != 0) {
		divList.each(function(divAt) {
			imgAt = divAt.getElementsByTagName("img")[0];
			imgWidth = imgAt.width;
			if (imgWidth < maxWidth) {
				divAt.style.width = eval(imgWidth + 2) + "px";
			} else {
				imgAt.style.width = maxWidth + "px";
				divAt.style.width = eval(maxWidth + 2) + "px";
			}
		});
	}
}

function setSearch () {
	doc.getElementById('search_text').value = window.location.href.split("search_text=")[1].split("&")[0].replace(/\+/g, " ");
}

function evenOut () {
	if (!$('content')) { return; };
	// set main objects and heights
	contentDiv = $('content');
	contentHeight = Element.getHeight(contentDiv.id);
	rightDiv = $('right');
	rightHeight = Element.getHeight(rightDiv.id);
		
	var addContent = 30;
	var addLeft = 0;
	
	// makes adjustments for different page types and sets numeric variables
	switch (pageType) {
		
		default:
			var addContent = -5;
		break;
	}
	
	var evenSwitch;
	
	// figures out which is tallest ands sets switch variable
	if (contentHeight > rightHeight) {
		evenSwitch = "content";
	} else if (rightHeight > contentHeight) {
		evenSwitch = "right";
	}
		
	// sets new heights based on the stuff above
	switch (evenSwitch) {		
		case "content":
			//alert('content wins');
			//rightDiv.style.height = (contentHeight + addLeft) + 'px';
		break;
		
		case "right":
			//alert('right wins');
			contentDiv.style.height = (rightHeight + addContent) + 'px';
		break;
	}
	
}

function expandNav(obj) {
	anchList = $A($('nav').getElementsByTagName("a"));
	anchList.each(function(anchAt){
		if (anchAt.className == 'on') {
			anchAt.className = '';
		}
	});
	menuList = $A($('nav').getElementsByTagName("ul"));
	menuList.each(function(menuAt){
		menuAt.className = '';				   
   });
	obj.blur();
	$(obj).addClassName('on');
	obj.parentNode.getElementsByTagName("ul")[0].className = 'on';
}

function setSubnav () {
	if (pageSubnav) {
		objName = pageSubnav + '_nav';
		$(objName).className = 'on';
	}
}

function screenScroll () {
	screenContainer = $('slider');
	dlList = screenContainer.getElementsByTagName("dl");
	screenContainer.appendChild(dlList[0]);	
}


/* function for quickpoll*/
function submitPoll() {
	var contest_id = $F('contest_id');
	var question_id = $F('question_id');
	var embed_site = 'gpfamily';
	var answer_id;
	inputs = $('quickpoll').getElementsByTagName('input');
	for (i=0; i < inputs.length; i++) {
		if (inputs[i].type == 'radio' && inputs[i].checked) {
			answer_id = $F(inputs[i].id);
		}
	}
	if (!answer_id) {
		alert('Please choose an option on the Quick Poll before submitting.'); return;
	}else{
		var url = '/quickpoll/quickpoll_action.cfm?action=post&contest_id=' + contest_id + '&question_id=' + question_id + '&embed_site=' + embed_site + '&answer_id=' + answer_id;
		viewPoll (url);
	}
}

function viewPoll (url) {
	if (url) {
		theURL = url;	
	}else{
		theURL = '/quickpoll/quickpoll_action.cfm?action=view&contest_id=' + $('contest_id').value;	
	}
	var theWidth = 620;
	var theHeight = 250;
	var y = (screen.height - theHeight) / 2;
	var x = (screen.width - theWidth) / 2;
	var details = 'height='+theHeight+',width='+theWidth+',menubar=no,scrollbars=yes,status=no,toolbar=no,location=no,favorites=no,left=' + x + ',screenx=' + x + ',top=' + y + ',screeny=' + y + ',resizable=yes';
	popWindow = window.open( theURL, "popWindow", details );
	popWindow.focus();
}

/* function for video scroller */
function popVideoScroll() {
	targetThumb = $('video_slider').getElementsByTagName("dl")[0];
	$('video_slider').appendChild(targetThumb);
}

/* function for adding articles on indexes via ajax */
function getAllArticles (trigger, section) {
	ulParent = $('content').getElementsByClassName("prev_next")[0];
	ulParent.parentNode.removeChild(ulParent);
	url = "/scripts/ajax/get_articles.cfm?section=" + section;
	new Ajax.Request(url, {onSuccess: articleSuccess});
}

function articleSuccess(t) {
	$('net_news').innerHTML += t.responseText;
}


/* function to allow multiple onload events */
function addLoadEvent(func) {
    var oldonload = window.onload;
    if (typeof window.onload != 'function') {
        window.onload = func;
    } else {
        window.onload = function() {
            oldonload();
            func();
        }
    }
}


/* fires off any of the above, depending on pageVariables */
function gnet_init() {
	switch (pageType) {
		case "index":
			//featureRequest();
		break;
		
		case "product":
		
		break;
		
		case "feature_index":
			if (pageSubnav && pageSubnav == 'feature' || pageSubnav && pageSubnav == 'blog') {
				resizeImages();
			}
		break;
	}
	// defaults
	setHeadliner();
	evenOut();
}

window.onload = gnet_init;

//Video Embed Script
if(typeof deconcept=="undefined"){var deconcept=new Object();}
if(typeof deconcept.util=="undefined"){deconcept.util=new Object();}
if(typeof deconcept.SWFObjectUtil=="undefined"){deconcept.SWFObjectUtil=new Object();}
deconcept.SWFObject=function(_1,id,w,h,_5,c,_7,_8,_9,_a,_b){if(!document.getElementById){return;}
this.DETECT_KEY=_b?_b:"detectflash";
this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);
this.params=new Object();
this.variables=new Object();
this.attributes=new Array();
if(_1){this.setAttribute("swf",_1);}
if(id){this.setAttribute("id",id);}
if(w){this.setAttribute("width",w);}
if(h){this.setAttribute("height",h);}
if(_5){this.setAttribute("version",new deconcept.PlayerVersion(_5.toString().split(".")));}
this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion();
if(c){this.addParam("bgcolor",c);}
var q=_8?_8:"high";
this.addParam("quality",q);
this.setAttribute("useExpressInstall",_7);
this.setAttribute("doExpressInstall",false);
var _d=(_9)?_9:window.location;
this.setAttribute("xiRedirectUrl",_d);
this.setAttribute("redirectUrl","");
if(_a){this.setAttribute("redirectUrl",_a);}};
deconcept.SWFObject.prototype={setAttribute:function(_e,_f){
this.attributes[_e]=_f;
},getAttribute:function(_10){
return this.attributes[_10];
},addParam:function(_11,_12){
this.params[_11]=_12;
},getParams:function(){
return this.params;
},addVariable:function(_13,_14){
this.variables[_13]=_14;
},getVariable:function(_15){
return this.variables[_15];
},getVariables:function(){
return this.variables;
},getVariablePairs:function(){
var _16=new Array();
var key;
var _18=this.getVariables();
for(key in _18){_16.push(key+"="+_18[key]);}
return _16;},getSWFHTML:function(){var _19="";
if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){
if(this.getAttribute("doExpressInstall")){
this.addVariable("MMplayerType","PlugIn");}
_19="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\"";
_19+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";
var _1a=this.getParams();
for(var key in _1a){_19+=[key]+"=\""+_1a[key]+"\" ";}
var _1c=this.getVariablePairs().join("&");
if(_1c.length>0){_19+="flashvars=\""+_1c+"\"";}_19+="/>";
}else{if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");}
_19="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\">";
_19+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";
var _1d=this.getParams();
for(var key in _1d){_19+="<param name=\""+key+"\" value=\""+_1d[key]+"\" />";}
var _1f=this.getVariablePairs().join("&");
if(_1f.length>0){_19+="<param name=\"flashvars\" value=\""+_1f+"\" />";}_19+="</object>";}
return _19;
},write:function(_20){
if(this.getAttribute("useExpressInstall")){
var _21=new deconcept.PlayerVersion([6,0,65]);
if(this.installedVer.versionIsValid(_21)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){
this.setAttribute("doExpressInstall",true);
this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));
document.title=document.title.slice(0,47)+" - Flash Player Installation";
this.addVariable("MMdoctitle",document.title);}}
if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){
var n=(typeof _20=="string")?document.getElementById(_20):_20;
n.innerHTML=this.getSWFHTML();return true;
}else{if(this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"));}}
return false;}};
deconcept.SWFObjectUtil.getPlayerVersion=function(){
var _23=new deconcept.PlayerVersion([0,0,0]);
if(navigator.plugins&&navigator.mimeTypes.length){
var x=navigator.plugins["Shockwave Flash"];
if(x&&x.description){_23=new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));}
}else{try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");}
catch(e){try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
_23=new deconcept.PlayerVersion([6,0,21]);axo.AllowScriptAccess="always";}
catch(e){if(_23.major==6){return _23;}}try{axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");}
catch(e){}}if(axo!=null){_23=new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));}}
return _23;};
deconcept.PlayerVersion=function(_27){
this.major=_27[0]!=null?parseInt(_27[0]):0;
this.minor=_27[1]!=null?parseInt(_27[1]):0;
this.rev=_27[2]!=null?parseInt(_27[2]):0;
};
deconcept.PlayerVersion.prototype.versionIsValid=function(fv){
if(this.major<fv.major){return false;}
if(this.major>fv.major){return true;}
if(this.minor<fv.minor){return false;}
if(this.minor>fv.minor){return true;}
if(this.rev<fv.rev){
return false;
}return true;};
deconcept.util={getRequestParameter:function(_29){
var q=document.location.search||document.location.hash;
if(q){var _2b=q.substring(1).split("&");
for(var i=0;i<_2b.length;i++){
if(_2b[i].substring(0,_2b[i].indexOf("="))==_29){
return _2b[i].substring((_2b[i].indexOf("=")+1));}}}
return "";}};
deconcept.SWFObjectUtil.cleanupSWFs=function(){if(window.opera||!document.all){return;}
var _2d=document.getElementsByTagName("OBJECT");
for(var i=0;i<_2d.length;i++){_2d[i].style.display="none";for(var x in _2d[i]){
if(typeof _2d[i][x]=="function"){_2d[i][x]=function(){};}}}};
deconcept.SWFObjectUtil.prepUnload=function(){__flash_unloadHandler=function(){};
__flash_savedUnloadHandler=function(){};
if(typeof window.onunload=="function"){
var _30=window.onunload;
window.onunload=function(){
deconcept.SWFObjectUtil.cleanupSWFs();_30();};
}else{window.onunload=deconcept.SWFObjectUtil.cleanupSWFs;}};
if(typeof window.onbeforeunload=="function"){
var oldBeforeUnload=window.onbeforeunload;
window.onbeforeunload=function(){
deconcept.SWFObjectUtil.prepUnload();
oldBeforeUnload();};
}else{window.onbeforeunload=deconcept.SWFObjectUtil.prepUnload;}
if(Array.prototype.push==null){
Array.prototype.push=function(_31){
this[this.length]=_31;
return this.length;};}
var getQueryParamValue=deconcept.util.getRequestParameter;
var FlashObject=deconcept.SWFObject;
var SWFObject=deconcept.SWFObject;