//wccc_html_css_wrapper

function fill_wccc_html_css_wrapper_div_for_wccc_html_css_js(){
    try
    { 
        var Target = document.getElementById('wccc_html_css_wrapper');
        if (Target != null){                
			var txt="";				
            txt+="<table width='100%'>"
	            txt+="<tr>"
		            txt+="<td style='text-align:right;' width='50%'>"
		                txt+="<img src='http://www.profmax.com/pbs/common/wccc_html_css/image/valid-html401.png' alt='Valid HTML 4.01 Transitional' width='75' height='26' border='0'>"
		            txt+="</td>"
		            txt+="<td style='text-align:left;' width='50%'>"
		                txt+="<img src='http://www.profmax.com/pbs/common/wccc_html_css/image/vcss.gif' alt='Valid CSS!' width='75' height='26' border='0' style='border:0;'>"
		            txt+="</td>"
	            txt+="</tr>"
            txt+="</table>"
            document.getElementById('wccc_html_css_wrapper').innerHTML=txt ;
        }
        else
        {
            alert("unable to load web page.");
        }
    }    
    catch(er)
    {
        alert("unable to load web page.");
    }  
}