function cOn(td){
	if(document.getElementById||(document.all && !(document.getElementById))){
	td.style.backgroundImage="url(images/hover.gif)";
	td.style.backgroundRepeat= "no-repeat";
	td.style.backgroundPosition= "left center";
	}
}

function cOut(td){
	if(document.getElementById||(document.all && !(document.getElementById))){
	td.style.backgroundImage="";
	td.style.backgroundRepeat= "no-repeat";
	td.style.backgroundPosition= "left center";
	}
}

function changeImages(arg) {
	for (var i=0; i<changeImages.arguments.length; i+=2) {
		document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}

function popUp() {
	var newwin = window.open('privacy.htm', 'privacy', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=480,height=400,left = 262,top = 184');
	}