// JavaScript Document

function OpenWin(theURL, winName,features, id){
	
 	if(features == "downloads"){
		win = window.open(theURL,winName,"location=0, status=0, scrollbars=0, width=700,height=500");	
		_hbLink( contentArray[id] );
	} else {
		theURL = "wallpapers.html?w=" + "images/wallpapers/" + features + "/" + theURL;
		win = window.open(theURL,winName,"location=0, status=1, scrollbars=1, resizable = 1");
		_hbLink( contentArray[id] );
	}
}

function popTrailer(url){
	var widthVar = 535;
	var heightVar = 585;
	var scrollbars = 'no';
	var windowName = 'trailer';
	var Xpos= (screen.availWidth - widthVar)/2; 
	var Ypos= (screen.availHeight - heightVar)/2; 
	var str="toolbar=no,location=no,scrollbars=" + scrollbars + ",directories=no,status=no,menubar=no,resizable=no,copyhistory=no,left=" + Xpos + ",screenX=" + Xpos + ",top=" + Ypos + ",screenY=" + Ypos + ",width="+widthVar+",innerWidth="+widthVar+",height="+heightVar+",innerHeight="+heightVar;
	
	window.open(url,windowName,str);
} 
