
var stringloc4 = unescape(document.location.toString());
var stringloc=stringloc4.toLowerCase();
//var MainURL = "http://v28.carabs.com/";
var MainURL = "http://www.carabs.com/v29/";
	
	function toggle(id) {
		if (document.getElementById) {
			with (document.getElementById(id).style) {
				if (display == "none") {
					display = "block";
				}else if(display == "block") {
					display = "none";
				}else if (display == "") {
					display = "block";
				}
			}
		}
	}

var imagesOn = new Object();
imagesOn["share_On"] = new Image();		imagesOn["share_On"].src = "http://carabs.com/images/graphics/icon/alb_share_on.gif";
imagesOn["share_Off"] = new Image();	imagesOn["share_Off"].src = "http://carabs.com/images/graphics/icon/alb_share.gif";
imagesOn["comments_On"] = new Image();	imagesOn["comments_On"].src = "http://carabs.com/images/graphics/icon/alb_comments_on.gif";
imagesOn["comments_Off"] = new Image();	imagesOn["comments_Off"].src = "http://carabs.com/images/graphics/icon/alb_comments.gif";

function SetImg(name, state){
		if (state == "On") { document.images[name].src = imagesOn[name+"_"+state].src; }
		else if (state == "Off") { document.images[name].src = imagesOn[name+"_"+state].src; }
	}

stars_other_On = new Image();		stars_other_On.src = "http://carabs.com/images/graphics/icon/alb_star_other_on.gif";
stars_other_1quart = new Image();	stars_other_1quart.src = "http://carabs.com/images/graphics/icon/alb_star_other_1quart.gif";
stars_other_1half = new Image();	stars_other_1half.src = "http://carabs.com/images/graphics/icon/alb_star_other_1half.gif";
stars_other_3quart = new Image();	stars_other_3quart.src = "http://carabs.com/images/graphics/icon/alb_star_other_3quart.gif";
stars_other_Off = new Image();		stars_other_Off.src = "http://carabs.com/images/graphics/icon/alb_star_other_off.gif";

stars_On = new Image();		stars_On.src = "http://carabs.com/images/graphics/icon/alb_star_on.gif";
stars_1quart = new Image();	stars_1quart.src = "http://carabs.com/images/graphics/icon/alb_star_1quart.gif";
stars_1half = new Image();	stars_1half.src = "http://carabs.com/images/graphics/icon/alb_star_1half.gif";
stars_3quart = new Image();	stars_3quart.src = "http://carabs.com/images/graphics/icon/alb_star_3quart.gif";
stars_Off = new Image();	stars_Off.src = "http://carabs.com/images/graphics/icon/alb_star_off.gif";


function SetRating(name, StarsOne, StarsTwo, StarsThree, StarsFour, StarsFive){
	document["starOne"].src = eval("stars_"+StarsOne+".src");
	document["starTwo"].src = eval("stars_"+StarsTwo+".src");
	document["starThree"].src = eval("stars_"+StarsThree+".src");
	document["starFour"].src = eval("stars_"+StarsFour+".src");
	document["starFive"].src = eval("stars_"+StarsFive+".src");
	}


function WriteOutComments(ShouldWrite) {
	if (ShouldWrite == "All") {
		HowManyLooped = 0;
		for (var i=ThisCmntARR.length-1; i>=HowManyLooped; i--) {
			//document.write("<div id=\"MainPPhotoCol\"><a href=\""+AlbURL+ThisCmntARR[i][3]+"\">"+ThisCmntARR[i][1]+" - "+ThisCmntARR[i][4]+"</a></div>"+IMG_1_1_Space+"<br>");
			document.write('<table cellspacing="0" cellpadding="0" border="0" width="100%" id="MainP">');
			document.write('<tr><td valign="top" width="36" id="MainPLinkContent">');
			document.write('<a href="'+AlbURL+ThisCmntARR[i][3]+'"><img src="'+MainURL+ThisCmntARR[i][5]+'" border="0"></a><br>');
			document.write('</td><td>'+IMG_5_5_Space+'<br>'+IMG_1_1_Space+'<br></td><td width="100%" valign="top" id="MainPLinkContent" width="100%">');
			document.write('<a href="'+AlbURL+ThisCmntARR[i][3]+'">'+ThisCmntARR[i][4]+'</a>&nbsp;&nbsp;<br>');
			document.write('<span class="sml">Rating: <b>'+ThisCmntARR[i][6]+'</b> Submitted on: <b>'+ThisCmntARR[i][1]+'</b> By: <b>'+ThisCmntARR[i][7]+' ('+ThisCmntARR[i][8]+')</b></span>');
			document.write('</td></tr></table>');
			document.write(''+IMG_5_5_Space+'<br>');
			}
		}
	else {
		document.write('<div id="MainPPhotosHead" align="center"><b>Latest Comments Posted:</b></div>'+IMG_1_1_Space);
		HowManyLooped = ThisCmntARR.length-5;
		for (var i=ThisCmntARR.length-1; i>=HowManyLooped; i--) {
			document.write("<div id=\"MainPPhotoCol\"><a href=\""+AlbURL+ThisCmntARR[i][3]+"\">"+ThisCmntARR[i][1]+" - "+ThisCmntARR[i][4]+"</a></div>"+IMG_1_1_Space+"<br>");
			}
		document.write("<div id=\"MainPPhotoCol\"><a href=\"about/comments.html\">View More Comments..</a></div>"+IMG_1_1_Space+"<br>");
		}
	}