<!--
// CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN AN OPTION OFF OR ON

// ONLY USE lowercase FOR ALL OPTIONS

var paragraph_1 	= "yes"		// SHOW TEXT PARAGRAPH
var boxwidth		= "150"		// WIDTH OF THE TEXT BOX
var showimage		= "yes"		// SHOW A SMALL SIDEBAR IMAGE
var linked		= "contact.html"	// SIDEBAR IMAGE LINK
var sidewidth		= "161"		// WIDTH OF THE LEFT SIDEBAR
var pageheight		= "10"		// ADJUST OVERALL PAGE HEIGHT
var nudge		= "10"		// NUDGE SIDEBAR DOWN



document.write('<div style="float: left; width:161;" id="my_menu" class="sdmenu" >');
document.write('      <div>');
document.write('        <span>Background</span>');
document.write('        <a href="backgroundbio.html">Educational Background</a>');
document.write('        <a href="certificateawards.html">Certificates, Training & Awards</a>');
document.write('        <a href="acadEmployment.html">Academic Employment</a>');
document.write('        <a href="industrialexperience.html">Consulting & Industrial Experience</a>');
        
document.write('</div>');

document.write(' <div>');
document.write('        <span>Research</span>');
document.write('         <a href="research.html">Research Interests & Current Projects</a>');
document.write('         <a href="research&funding.html">Research Funding & Previous Projects</a>');
document.write('         <a href="researchfacilities.html">Research Facilities</a>');
document.write('       </div>');
document.write('       <div class="collapsed">');
document.write('         <span>Publications</span>');
document.write('         <a href="publications.html">Book</a>');
document.write('         <a href="RefereedJou.html">Referred Papers</a>');
document.write('         <a href="proceedings.html">Proceedings</a>');
document.write('         <a href="presentations.html">Presentations</a>');
document.write('        </div>');
document.write('       <div>');
document.write('         <span>Teaching</span>');
document.write('         <a href="ugradteaching.html">Undergraduate Courses</a>');
document.write('         <a href="gradteaching.html">Graduate Courses</a>');
        
document.write('       </div>');
      
document.write('        <div>');
document.write('         <span> Services</span>');
document.write('         <a href="profmembershipservice.html">Professional Memberships</a>');
document.write('         <a href="profservice.html">Professional Services</a>');
document.write('         <a href="communityservices.html">University / Community Services</a>');
        
document.write('       </div>');
document.write('        <div>');
document.write('         <span>About My Book</span>');
document.write('         <a href="toinstructorlinkpubl.html">Link to the Publisher</a>');
document.write('         <a href="reviewcomments.html">Review Comments</a>');
document.write('         <a href="instructionalmaterials.html">Instructional Materials</a>');
document.write('       </div>');
document.write('        <div>');
document.write('         <span>To Students</span>');
document.write('         <a href="tostudents.html">Information</a>');
       
        
document.write('       </div>');
       

//document.write('    </div>');

// NOTE: If you use a ' add a slash before it like this \'

//document.write('<div id="1sidebar" class="menu-layer">');
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="'+sidewidth+'">');
document.write('<tr><td align="center">');
document.write('<img src="images/spacer.gif" height="'+nudge+'" width="5">');




// SMALL PICTURE AREA

   if (showimage == "yes") {
document.write('<br>');
document.write('<a href="'+linked+'"><IMG SRC="images/uhcl_bayoublg.jpg" border="0" class="bordersSB"></a><br>');

}

// START SIDEBAR TEXT - EDIT THIS AREA

   if (paragraph_1 == "yes") {

document.write('<TABLE cellpadding="5" cellspacing="0" border="0" width="'+boxwidth+'"><tr><td class="sidetexttitle">');



// START SIDE TEXT TITLE

document.write('Contact Information<br>');

document.write('</td></tr><tr><td class="sidetext">');



// START NOTE TEXT AREA - EDIT THE NEXT LINE

document.write('Dr.Chunlong (Carl) Zhang<br>Phone: 281-283-3746<br>Email: <a href="mailto:zhang@uhcl.edu">zhang@uhcl.edu</a> <br>');

// SIDEBAR LINK



document.write('</td></tr></table>');
}



document.write('</td></tr></table>');
document.write('</div>');
// document.write('<br>');
document.write('<div id="sidebar-spacer">');
//document.write('<img src="picts/spacer.gif" height="'+pageheight+'" width="'+sidewidth+'"><br>');
document.write('</div>');











-->