var gallery = "";

function getGallery() {
    return gallery;
}

function getGalleryURL() {
    return "http://www.shutterfly.com/pro/dabstudios/"+gallery;
}

function getGalleryName() {
    gallery = location.search.substring(1);
    return getGalleryTitle( gallery );
}

function setGalleryParameters() {
    gallery = location.search.substring(1);
    frames['shutterflyFrame'].location.href = getGalleryURL();
    document.getElementById("galleryTabCellLabel").innerHTML = getGalleryTitle( gallery );
}

function autofitIframe(id) {
	if (!window.opera && !document.mimeType && document.all && document.getElementById){
		parent.document.getElementById(id).style.height=this.document.body.offsetHeight+"px";
	}
	else if (document.getElementById) {
		parent.document.getElementById(id).style.height=this.document.body.scrollHeight+"px"
	}
}

