// JJ JavaScript Document
function th(targetId,append){
	target = window.document.getElementById(targetId);
	target.className = targetId + append;
} 

function addToFavorites(){
	if (window.external)
	{
		window.external.AddFavorite(window.document.location,window.document.title);
	}
	else if (window.sidebar)
	{
		window.sidebar.addPanel(window.document.title, window.document.location, "")
	}
	else
	{
		alert("Your browser doesn't support this function!!\n\nPlease add this page to FAVORITES manually!!"); 
	}
}
function popupWindow(url) {
  window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=100,height=100,screenX=150,screenY=150,top=150,left=150')
}