<!--
function galleryPopup(url,intLayout)
{
	// intLayout is 0 = landscape
	// intLayout is 1 = portrait
	// intLayout is 2 = scrollable window
	bReturn = false;
	if(intLayout == 1)
	{
	  portrait=window.open("","portrait","width=540,height=240,scrollbars=no,resizable=yes,top=75,left=150");
	  if (portrait!=null)
	  {
	     if(portrait.opener==null)
	        portrait.opener=self;
	     portrait.location.href=url;
	  }
	  portrait.focus();
	  bReturn = true;
	}
	if(intLayout == 0)
	{
	  landscape=window.open("","landscape","width=620,height=545,scrollbars=no,resizable=yes,top=75,left=150");
	  if (landscape!=null)
	  {
	     if(landscape.opener==null)
	        landscape.opener=self;
	     landscape.location.href=url;
	  }
	  landscape.focus();
	  bReturn = true;
	}
	if(intLayout == 2)
	{
	  textpage=window.open("","textpage","width=630,height=500,scrollbars=yes,resizable=yes,top=75,left=75");
	  if (textpage!=null)
	  {
	     if(textpage.opener==null)
	        textpage.opener=self;
	     textpage.location.href=url;
	  }
	  textpage.focus();
	  bReturn = true;
	}
	return bReturn
}
//-->

