// JavaScript Document

function OpenWin(theURL, winName,features, id){
	
	if(features == "flash"){
		//hitbox.Set_hbLink( contentArray[id] );
	} else if(features == "trailer"){
		//hitbox.Set_hbLink( exitLinkArray[id] );
		win = window.open(theURL,winName,"location=0, status=0, scrollbars=0, width=700,height=500");
	} else if(features == "downloads"){
		//hitbox.Set_hbLink( contentArray[id] );
		win = window.open(theURL,winName,"location=0, status=0, scrollbars=0, width=700,height=500");	
	} else {
		//hitbox.Set_hbLink( contentArray[id] );
		theURL = "wallpapers.html?w=" + "images/wallpapers/" + features + "/" + theURL;
		win = window.open(theURL,winName,"location=0, status=1, scrollbars=1, resizable = 1");
	}
}

function OpenHidef(theURL, id){
	
	document.getElementById('hidef').innerHTML = "<iframe src='"+ theURL + "' name='hidef' id='hidef' width='1' height='1' scrolling='no' frameborder='0'></iframe>";
	
	//hitbox.Set_hbLink( exitLinkArray[id] );
	
}