function getWallPaper(name, size)
{
	var image = name + "_" + size + ".jpg";
	var width = size.substring(0, size.indexOf("x"));
	var height = size.substring(size.indexOf("x") + 1, size.length);
	
	popup(width, height, "files/filer/aspfiles/wallpapers.asp?img="+ image +"&width="+ width +"&height="+ height, "BatmanWallpapers");
}


function popup(b,h,page,navn){
	LeftPosition=(screen.width)?(screen.width-b)/2 :100;
	TopPosition=(screen.height)?(screen.height-h)/2 :100;
	settings="width="+ b +",height="+ h +",top="+TopPosition+",left="+LeftPosition+",scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no";
	popupWindow = window.open(page,navn,settings);
}
