window.name="(c) Lion Research Labs, 2001-2004.  http://www.lionlabs.com.  mailto: lion@lionlabs.com";

var v=parseInt(navigator.appVersion);
isNetscape=navigator.appName.indexOf('Netscape')>=0;
isExplorer=navigator.appName.indexOf('Explorer')>=0;
if(v>=3) self.focus();

function popupWindow(goLocation) {
ww=750;  wh=screen.height;
positionCode='';
if(v>=4) {
sw  = screen.width;           sh  = screen.height;
wbx = Math.round((sw-ww)/2);  wby = Math.round((sh-wh)/2);
if(isExplorer) positionCode='left='+wbx+',top='+wby+',';
if(isNetscape) positionCode='screenX='+wbx+',screenY='+wby+',';
}

newWindow=window.open(goLocation,'LionPopUp',
'width='+ww+',height='+wh+','+
positionCode+
'toolbar=0,'+
'status=0,'+
'scrollbars=1,'+
'resizable=0');
if(isNetscape && v>=3) newWindow.focus();
}

function runLink(goLocation) {
if(goLocation!='') {
newWindow=window.open(goLocation, "HTTP://LART.BIZ");
if(isNetscape) newWindow.focus();
}
//    parent.window.close();
}

function Open(Source,Format) {
if (Format) { htmlfile='png.htm' } else { htmlfile='lart_photos.html' }
var NewWindow = window.open("/"+htmlfile+"?"+Source, "", "width=750,height="+screen.height+",toolbar=0,scrollbars=1,resizable=1,top=0,left=0,status=0,location=0,directories=0,menubar=0");
NewWindow.focus();
}