
function SetImage(fid)
{
	if (fid.length > 0)
		 TripPhoto.src = "../../ManagedUpload/trips/" + fid;
	else
		TripPhoto.src = "../../Images/NoImage250.jpg";
}
function SetImg() 
{
	if (fldPhoto.value.length > 0)
	{
		TripPhoto.src = fldPhoto.value;
		if (TripPhoto.height > 250)
		{
			TripPhoto.height = 250;
		}
		TripPhoto.style.display = "inline";		
	}
} 

function setActiveStyleSheet(title) {
   var i, a, main;
   for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
     if(a.getAttribute("rel").indexOf("style") != -1
        && a.getAttribute("title")) {
       a.disabled = true;
       if(a.getAttribute("title") == title) a.disabled = false;
     }
   }
}
