// Swap Functions

// Image Rollovers
function menuSwap(img){
	if (document.images) {
		document [img].src = eval(img + "On.src");
		
	}
}

function menuUnSwap(img){
    if (document.images) {
		document [img].src = eval(img + "Off.src");
		
	}
}

// Table Cell Rollovers
function cOn(td,color){
	if(document.getElementById||(document.all && !(document.getElementById))){
		td.style.backgroundColor=color;
	}
}

function cOut(td,color){
	if(document.getElementById||(document.all && !(document.getElementById))){
		td.style.backgroundColor=color;
	}
}

function makeSure(url){
	if(window.confirm("Are you sure you want to delete this item?\nAny sub-menu's or pages related to this link will be lost.")){
		 window.location=url;
	}
}


function openFTP(width,height){
   window.open("http://embassygraphics.com/includes/ftptools/","FTP","width="+width+",height="+height+",status=1");
}

