
function GalleryTheme(gb)
{
	this.Browser=gb;
}

GalleryTheme.prototype.CreateThumbnail=function _GalleryTheme_CreateThumbnail(url,width,height)
{
	var div=document.createElement("SPAN");
	var img=GalleryCreateThumbnail(url,width-8,height-8);
	img.className="GalleryThumbnailImage";
	div.className="GalleryThumbnailContainer";
	div.style.width=width+"px";
	div.style.height=height+"px";
	div.appendChild(img);
	return div;
}

GalleryTheme.prototype.CreatePhoto=function _GalleryTheme_CreatePhoto(url,width,height)
{
	var img=GalleryCreateImage(url,width-8,height-8);
	img.className="GalleryPhotoImage";
	
	var div=document.createElement("DIV");
	div.className="GalleryPhotoContainer";
	div.style.width=width+"px";
	div.style.height=height+"px";
	
	var isie7=navigator.userAgent.indexOf("MSIE 7.")>-1;
	var isie6=navigator.userAgent.indexOf("MSIE 6.")>-1;
	
	if(isie7 || isie6){
	    div.style.left="0px";
	}
	
	if(isie6){
	if(width > 570){
	    width=570;
	}
	    var img=GalleryCreateImage(url,width-12,height-12);
	    div.style.top="-8px";
	    div.style.width=width-4+"px";
	    div.style.height=height-4+"px";
	}
	
	div.appendChild(img);
	return div;
}

GalleryTheme.prototype.InitializeTooltip=function _GalleryTheme_InitializeTooltip(container)
{
	var div=document.createElement("DIV");
	div.className="GalleryTooltipContainer";
	container.appendChild(div);
	return div;
}






















