var loaded = false;
function loadImages() {
	if (document.images) {
		title1 = loadImage("images/title1.gif");
		title2 = loadImage("images/title2.gif");
		img2 = loadImage("images/img2.gif");
		img3 = loadImage("images/img3.gif");
		arrow = loadImage("images/arrow3.gif");
		blank = loadImage("images/blank.gif");

		loaded = true;

	}
}

    function turnOffSelect(formName, sName1,sName2, offCondition) {
	var s = document.forms[formName].elements[sName1].options[document.forms[formName].elements[sName1].selectedIndex].value;
	var d =  document.forms[formName].elements[sName2].disabled;
	if (s != offCondition){
	    document.forms[formName].elements[sName2].disabled = true;
	} else {
	    document.forms[formName].elements[sName2].disabled = false;
	}
    }

function loadImage(img) {
	if (document.images){
		temp = new Image();
		temp.src = img;
		return temp;
	}
}

function roll(imgid,imgnew) {
	if (document.images && loaded) {
		document.images[imgid].src=eval(imgnew + ".src");
	}
}

function construction() {
	alert("\n\tThis new Web site of CHIME is under construction.\n\n\tPlease visit www.chime-dc.org to access CHIME's current Web site.\t\n");
}

var msg = "\t\t\t\t\t\t\n\n\n\nŠ 1998-2002 RugFinder.com\nThis site is copyrighted and digitally watermarked\nto protect it against copyright violations.\t\t\t\t\t\t\n\nFor more information please send email to: info@RugFinder.com\t\t\n\n\n\n\n";
function click(e) {if (document.all) {if (event.button == 2) {alert(msg);return false;}} else {if (e.which == 3) {alert(msg);return false;}}}if (document.layers) {document.captureEvents(Event.MOUSEDOWN);}document.onmousedown=click;

