function openWallpaperWindow(oWall,oSize) {
	var myId = oWall;
	if((oWall >= 2) && (oWall <= 11)){
		myId = oWall-1;
	}
	//alert(myId);
	var iWidth=oSize;
	if (iWidth == 1280){
		iHeight = 1024;
	} else {
		var iHeight = iWidth/4*3;
	}
	var myHeight = iHeight+50;
	var myWidth = oSize+25;
	
	window.open("wallpaper.html?sId="+myId+"&iWidth="+oSize+"&iHeight="+iHeight, 'wallpaper','width=750,height=550,top=0,left=0,toolbar=no,scrollbars=yes,resizable=yes,menubar=no,status=no,directories=no,location=no');
}
