//ExternalLink_wrapper
function profmax_print(){
	window.print(); 
}
function profmax_favorite(){
	if (window.sidebar) 
	{ // Mozilla Firefox Bookmark
	    window.sidebar.addPanel(document.title, location.href,"");
	} 
	else if( window.external ) 
	{ // IE Favorite
		window.external.AddFavorite( location.href, document.title); 
	}
	else if(window.opera && window.print) 
	{ // Opera Hotlist
		return true; 
	}
}
function profmax_mail(){
   	alert("Mail Server not responding.");
}
function fill_ExternalLink_wrapper_div_for_ExternalLink_through_js(){
    try
    { 
        var Target = document.getElementById('ExternalLink_wrapper');
        if (Target != null){                
			var txt="";
			txt+="<table style='float:left;margin-top:20px;width:208px;' cellpadding='5' cellspacing='5'>";
				txt+="<tr>";
					txt+="<td>";
						txt+="<a href='' onclick='profmax_print(); return false' class='ExternalLink'><img onclick='profmax_print()' alt='Print this Page' title='Print this Page' src='http://www.profmax.com/pbs/common/external_links/image/print_icon.jpg' style='border:0; float:left; margin-left:12px'/>Print this page</a>";
					txt+="</td>";
				txt+="</tr>";
				txt+="<tr>";
					txt+="<td>";
						txt+="<a href='' onclick='profmax_mail(); return false' class='ExternalLink'><img onclick='profmax_mail()' alt='Email this Page' title='Email this Page' src='http://www.profmax.com/pbs/common/external_links/image/email_icon.jpg' style='border:0; float:left; margin-left:12px'/>Email this page</a>";
					txt+="</td>";
				txt+="</tr>";
				txt+="<tr>";
					txt+="<td>";
						txt+="<a href='' onclick='profmax_favorite(); return false' class='ExternalLink'><img onclick='profmax_favorite()' alt='Add to Favorities' title='Add to Favorities' src='http://www.profmax.com/pbs/common/external_links/image/favorates.jpg' style='border:0; float:left; margin-left:12px'/>Add to Favorites</a>";
					txt+="</td>";
				txt+="</tr>";
			txt+="</table>";

            document.getElementById('ExternalLink_wrapper').innerHTML=txt ;
        }
        else
        {
            alert("unable to load web page.");
        }
    }    
    catch(er)
    {
        alert("unable to load web page.");
    }  
}