
<!--
function launchArtGall(whichPage) {
	/*
		if (isNaN(whichPage))
		whichPage = 1;
	*/	

	if (isNaN(whichPage))
		var xurl = '../artifactGallery/index.cfm';
	else				
		var xurl = '../../artifactGallery/Gallery.cfm?Q=' + whichPage;
		
	openCenterWin(xurl,470,552);
}

function launchArtGall2(whichPage) {
	/*
		if (isNaN(whichPage))
		whichPage = 1;
	*/	

	if (isNaN(whichPage))
		var xurl = '../../artifactGallery/index.cfm';
	else				
		var xurl = '../../artifactGallery/Gallery.cfm?Q=' + whichPage;
		
	openCenterWin(xurl,470,552);
}


function openCenterWin(url,width,height) {
  var str = "height=" + height + ",innerHeight=" + height;
  str += ",width=" + width + ",innerWidth=" + width;
  if (window.screen) {
    var ah = screen.availHeight - 30;
    var aw = screen.availWidth - 10;

    var xc = (aw - width) / 2;
    var yc = (ah - height) / 2;

    str += ",left=" + xc + ",screenX=" + xc;
    str += ",top=" + yc + ",screenY=" + yc;
  }
  str += ",scrollbars=yes";
  return window.open(url, 'ArtifiactGallery', str);
}
//-->

