// Various Preferences
// -------------------
var numColumns    = 4		// The number of columns on each index page
var numRows       = 3		// The number of rows on each index page
var showExif      = 0		// set to 1 to show EXIF data
var showComment   = 0		// set to 1 to show image comment field
var navigAsThumbs = 0		// set to 1 to show thumbs for prev. & next images
var sizesAsThumbs = 0		// set to 1 to show thumbs for image variations


// Personal information
// --------------------
// var baseURL   = "file://F:/photo-vinc/publish/"
var baseURL      = "http://www.photo-vinc.com/"
var myname       = ""		// if blank @owner@ will be used
var myhomepage   = baseURL + ""
var myiconpath   = baseURL + "icons/"
var mygallery    = baseURL + "galleries.htm"
var mylinks      = baseURL + "links.htm"
var myblog       = baseURL + "PHP/blog/index.php"
var myabout      = baseURL + "about.htm"
var myprints     = baseURL + "prints.htm"
var mycopyright  = baseURL + "copyright.htm"
var mycontact    = baseURL + "PHP/mail/contact.php"
var myinteractive= baseURL + "interactive.htm"
var myguestbookview = baseURL + "PHP/gbook2/guestbook.php"
//var myguestbooksign = baseURL + "PHP/guestbook/submit.php"
var myarticles  = baseURL + "articles.htm"
var mymailinglist= baseURL + "PHP/txtlist/mailinglist.htm"
var myecards     = baseURL + "ecards.htm"
var mynews       = baseURL + "PHP/rssnews/index.php"
var copyright    = "&copy; 1999-2010"


// Image sizes and description
// ---------------------------
var size = new Array()
var sizename      = "other sizes:"
var defaultSize   = 1
size[1] = "" 			// only one size (default)


// Example with 4 sizes:
//
//var size = new Array()
//var sizename      = "other sizes:"
//var defaultSize   = 2
//size[1] = "small" 		// images in sub-folder "size1"
//size[2] = "medium" 		// images in main folder (= default size)
//size[3] = "large"  		// images in sub-folder "size3"
//size[4] = "original" 		// images in sub-folder "size4"


// Example with 2 sizes:
//
//var size = new Array()
//var sizename      = "image size:"
//var defaultSize   = 1
//size[1] = "480x320" 		// images in main folder (= default size)
//size[2] = "900x600"		// images in sub-folder "size2"


// Example with variations:
//
//var size = new Array()
//var sizename      = "Variations:"
//var defaultSize   = 1
//size[1] = "color" 		// images in main folder (= default size)
//size[2] = "black/white"	// images in sub-folder "size2"
//size[3] = "sepia"		// images in sub-folder "size3"


// Example with other views:
//
//var size = new Array()
//var sizename      = "View:"
//var defaultSize   = 1
//size[1] = "front" 		// images in main folder (= default size)
//size[2] = "side"		// images in sub-folder "size2"
//size[3] = "back"		// images in sub-folder "size3"
//size[4] = "detail"		// images in sub-folder "size4"


