onError=null
var picList = new Array();
var current = 0;
thumbPath = "/public/images/side_photos/thumbnails/";
picPath = "/public/images/side_photos/";
var divTitle = '<img src="/_includes/images/slices/slice_photo_gallery.gif" width="140" height="24" /><br />';
var divText = '<table border="0" cellspacing="0" cellpadding="0"><tr><td><img src="/_includes/images/slices/slice_sidebar_corner.gif" width="106" height="29"></td><td width="21" valign="bottom"><a href="javascript: goLeft();"><img src="/_includes/images/buttons/button_sidebar_left.gif" name="goLeft" width="21" height="24" border="0" class="hidePic" id="goLeft"></a></td><td width="21" valign="bottom"><a href="javascript: goRight();"><img src="/_includes/images/buttons/button_sidebar_right.gif" name="goRight" width="21" height="24" border="0" class="showPic" id="goRight"></a></td></tr></table>';
  
function goLeft() {
	identity = document.getElementById("goRight"); identity.className = "showPic";
	if (current > 0) { current--; } 
	if (current == 0) {	document.getElementById("goLeft").className = "hidePic"; }
    document.images.picBox.src = thumbPath+picList[current];
}
function goRight() {
	identity = document.getElementById("goLeft"); identity.className = "showPic";
	if (current < picList.length - 1) {	current++; } 
	if (current == picList.length - 1) { document.getElementById("goRight").className = "hidePic";	}
    document.images.picBox.src = thumbPath+picList[current];
}

function addPics() {
	document.write('<div class="sidebar"><div>');
	if (arguments.length > 1) { document.write(divTitle); }
	for(var i =0; i < arguments.length; i++ ) {	picList.push(arguments[i]);	}
	document.write('<a href="javascript:picLink();"><img src="'+thumbPath+picList[current]+'" name="picBox" width="150" id="picBox" border="0"></a></div>');
	if (arguments.length > 1) {	document.write(divText); }
	document.write('</div>');
}
	
function picLink() {
	window.open(picPath+picList[current],"","height=400,width=600,menubar=no,location=no,resizable=no,status=no,toolbar=no");
}