var appName = "FrontThumbnails";
var appType = "P";
 
var thumbsShown = false;
function FrontThumbnails_onload() {
	FTInitScroll();
}


// door FrontPicture
function getThumbnails() {
	if (thumbsShown == true)
		return;
	
	var params = new Array();
	params["FrontAlbumIds"] = frontAlbumIds;
	oXmlRequest = new XmlRequest();
	oXmlRequest.functionName	= "getThumbnails";
	oXmlRequest.params 			= params;	
	oXmlRequest.onsuccess 		= getThumbnails_success;
	oXmlRequest.appName = "FrontThumbnails";
	oXmlRequest.start();
}

function getThumbnails_success(oXmlResponse) {
	
	//thumbContainer = document.getElementById("FrontThumbnailsContent");
	
	thumbsShown = true;
	//alert(oXmlResponse.responseText);
	
	for (i=0; i<oXmlResponse.numDataRows; i++) {
		pic = oXmlResponse.data[i];
		
		thumb = document.getElementById("thumb_" + (i+5));
		thumb.src = pic["ForumRoot"] + "/picture.php?pictureid=" + pic["PictureID"] + "&albumid=" + pic["AlbumID"] + "&thumb=1";
		thumb.style.visibility = "visible";
		
//		thumb = document.createElement("img");
//		//thumb.onclick = "setPic('" + pic["AlbumID"] + "," + pic["PictureID"] + "," + pic["Width"] + "," + pic["Height"] + ", '" + pic["Description"] + "');calculateImage();";
//		thumb.className = "FrontThumbnailsImage";
//		thumb.src = pic["ForumRoot"] + "/picture.php?pictureid=" + pic["PictureID"] + "&albumid=" + pic["AlbumID"] + "&thumb=1";
//		thumb.alt = pic["Description"];
//		thumb.title = pic["Description"];
//		thumbContainer.appendChild(thumb);
	}
	
	//FrontThumbnailsContent
	//$img .= "<img onclick=\"setPic(" . $row["albumid"] . ", " . $row["pictureid"] . ", " . $row["width"] . ", " . $row["height"] . ", '" . $desc . "');calculateImage();\" class=\"FrontThumbnailsImage\" 
	//src=\"" . getConfig("forumroot") . "/picture.php?pictureid=" . $row["pictureid"] . "&albumid=" . $row["albumid"] . "&thumb=1\" alt=\"" . $desc . "\" title=\"" . $desc . "\"/>\n";




	
	
}
