// Open a popup window with an image, title, caption and description passed to the window
function openIDGalleryWin(url,imgID,w,h) {
	var width = w + 30;
	var height = h + 60;
	var windowprops = "height="+height+",width="+width+",location=no,directories=no,status=no,toolbar=no,menubar=no,resizable=yes,dependent=yes,scrollbars=yes";
	galleryWin = open("/GalleryWindow.cfm?id=" + imgID, "Photo_Gallery",windowprops);
	galleryWin.focus();
	}
function openWindow(url) {
     win=window.open(url,"windowName","status,scrollbars,resizable,copyhistory,height=420,width=500");
}