function gallery(galleryID){
	var chasm = screen.availWidth;
	var mount = screen.availHeight;

	var w = 700;
	var h = 600;

	galleryWindowHandle = null;
	galleryWindowHandle = window.open('/gallery.aspx?gid=' + galleryID,'PhotoGallery','width=' + w + ',height=' + h + ',left=' + ((chasm - w - 10) * .5) + ',top=' + ((mount - h - 30) * .5) + ',scrollbars=no');
	if (galleryWindowHandle.blur) galleryWindowHandle.focus();
}

function setCookie(name,value,expire,path){
	document.cookie = name + "=" + escape(value) + ((expire == null) ? "" : ("; expires=" + expire.toGMTString())) + ((path) ? "; path=" + path : "");
}

function getCookie(name){
	var search = name + "=";
	if (document.cookie.length > 0){
		offset = document.cookie.indexOf(search); 
		if (offset != -1){
			offset += search.length; 
			end = document.cookie.indexOf(";", offset); 
			if (end == -1)
				end = document.cookie.length;

			return unescape(document.cookie.substring(offset, end));
		} 
	}
}

function killCookie(name,path){
	theValue = getCookie(name);
	if (theValue)
		document.cookie = name + '=' + theValue + '; expires=Fri, 13-Apr-1970 00:00:00 GMT' + ((path) ? '; path=' + path : '');
}