function fadeToView(objname){
	var objholder=document.getElementById(objname);
	if (typeof document.all!="undefined") {
		objholder.filters[0].apply();
		objholder.style.visibility="visible";
		objholder.filters[0].play();
	}
	else {
		objholder.style.visibility="visible";
	}
}


function popup(mylink, windowname){
	if (! window.focus) return true;
	var href;
	if (typeof(mylink) == 'string')
	   href=mylink;
	else
	   href=mylink.href;
	window.open(href, windowname, 'width=500,height=500,scrollbars=yes');
	return false;
}