function openUp(what) {
	var url = null;
	var width = "500";
	var height = "500";
	var left = "50";
	var top = "50";
	
	if (what <= 30) {
		width = "710"; 
		height = "500";
	} 
	
	if (what >= 30){
		width = "440";
		height = "710"; 
	}
	
	url = "/images/pictures/big/photo" + what + ".jpg";
	params = "toolbar=no,status=no,menubar=no,location=no,alwaysRaised=yes," + 
			 "scrollbars=nos,width=" + width + ",height=" + height + ",resizable=yes," +
			 "left=" + left + ",top=" + top;
	something = window.open(url, "_pictures", params);
	something.focus();
	something.resizeTo(width, height);
}

function openSound(what) {
	var width = "350";
	var height = "225";
	var left = "100";
	var top = "100";
	var url = "/sounds/Track0" + what + ".php";
	params = "toolbar=no,status=no,menubar=no,location=no,alwaysRaised=yes," + 
			 "scrollbars=nos,width=" + width + ",height=" + height + ",resizable=yes," +
			 "left=" + left + ",top=" + top;
	something = window.open(url, "_pictures", params);
	something.focus();
	something.resizeTo(width, height);
}
