function imagesWindow(popup,url,text,width,height) {
	w = parseInt(width) + 20;
	h = parseInt(height) + 20;
	if (text) {
		h = h + 100;
	}
	newWindow = window.open("/images/image_viewer.cgi?img="+url+"&txt="+text+"&w="+width+"&h="+height,popup,"toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=no,opyhistory=no,width=" + w + ",height=" + h,"_new_images");
}
function GalleryWindow(src,title,type) {
	newWindow = window.open("/gallery","bk_window"+title,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=820,height=620","_new_gallery");
}
function videosWindow(src) {
	newWindow = window.open("/videos/view_video.cgi?id="+src,"Videos","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=500,height=420","_new_video");
}
function photosWindow(src) {
	newWindow = window.open("/albums/view_photo.cgi?id="+src,"Videos","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=940,height=680","_new_video");
}
