function phowin(pho,w,h)
{
  	var earl = "http://www.carbonpictures.com/cgi-bin/photo.cgi?" + "/" + b + "/images/" + pho + ".jpg";
        var winl = (screen.width - w) / 2;
        var wint = (screen.height - h) / 2;
	var wins = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,width='+w+',height='+h+',top='+wint+',left='+winl+',resizable=0';

	win = window.open(earl,'PHOTO',wins);
        if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); } 
}
