<!-- hide

function opengallery(location,width,height) {
	var options = "location=0,status=0,toolbar=0,menubar=0,directories=0,width=";	var needscroll = false;	if (width <= screen.availWidth) {options = options + width;}
		else {
		value = screen.availWidth-12;
		options = options + value;
		needscroll=true;
		}
	options = options + ",height=";
	if (height <= screen.availHeight) {options = options + height;}
		else {
		value = screen.availHeight-30;
		options = options + value;
		needscroll = true;
		}	if (needscroll == true) {options = "scrollbars,resizable," + options;}
		else {options = "scrollbars=0,resizable=0," + options;}	options = options + ",top=" + Math.round(((screen.height-height)/2));	options = options + ",left=" + Math.round(((screen.width-width)/2));
	if (window.pici) pici.close();	pici=window.open("","",options);
	pici.document.open();
	pici.document.write("<html><head><title>Gallery Picture</title></head><body marginwidth=0 marginheight=0 leftmargin=0 topmargin=0 rightmargin=0 bottommargin=0 onload=\"window.focus();\"><a href=\"javascript:window.close();\"><img src="+location+" border=0 hspace=0 vspace=0></a></body></html>");
	pici.document.close();
	pici.focus();
	}

window.defaultStatus="The Unofficial Chris De Burgh Web Site";

// -->