// JavaScript Document
	function SearchOpenWindow(URL) {
		var windowSettings="toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,"+
								"resizable=yes,width=700,height=500,top=200,left=200";
  	window.open(URL,'',windowSettings);
  }

	function ChangeColor(name1){
 	 document.getElementById(name1).style.color = "blue";
	}


								
