
var x;

function colorf(color){

	if(document.Form.col.value == "undefined"){
		document.Form.col = x;
	}else{
		x=document.Form.col;
	}
	
	if(document.Form.col.value == "Top")
		Row1.bgColor=color;
	if(document.Form.col.value == "Bottom")
		Row2.bgColor=color;
	if(document.Form.col.value == "Text")
		document.getElementById('Table29').style.color=color;
	if(document.Form.col.value == "Visited")
		document.vlinkColor=color;
	if(document.Form.col.value == "Unvisited")
		document.linkColor=color;
	
}
	

	
