if (document.images) {            
	img1on = new Image();      
	img1on.src = "images/bottemRb.jpg"; 
    img1off = new Image(); 
    img1off.src = "images/bottemR.jpg"; 
}

function imgOn(imgName) {
	if (document.images) {
    	document[imgName].src = eval(imgName + "on.src");
    	return true;
    }
    else 
    {
    	return false;
    }
}

function imgOff(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "off.src");
        return true;
	}
	else
	{
		return false;
	}
}
							
///

function openIt(url) {
    var the_fat = 650;
    var the_tall = 675;
    window.open(url, "JasonsWindow", "width=500,height=450,top=0,left=100,resizable=0,scrollbars=0,toolbar=0");
					}	
///

function openVid(url) {
	var the_fatr = 550;
	var the_tallr = 400;
	window.open(url, "110Livingston", "width=550,height=400,top=100,left=100,resizable=0,scrollbars=0,toolbar=0");
					}