// JavaScript Document

function disp(url,name,w,h){
	
	str = "width="+w+",height="+h+",scrollbars=no";
	
	window.open(url, name, str);

}

function FontColor(id, color){
	if(document.all){
		document.all(id).style.color = color;
	}else if(document.getElementById){
		document.getElementById(id).style.color = color;
	}
}

