merlot.org - information about domain
- Server Status: available
- Server IP: 137.145.20.122
- Server Response Time: 392ms
Site title
MERLOT - Multimedia Educational Resource for Learning and Online Teaching
Keywords
merlot,higher education,online learning,peer review,online community,learning resource library
Description
Free and open online community of resources designed primarily for faculty, staff and students of higher education from around the world to share their learning materials and pedagogy. MERLOT is a leading edge, user-centered, collection of peer reviewed
Alexa information
Alexa rank: 243,781
Rank Trend
Bounce Trend
DNS Information
| Host: | Class: | Type: | IP: | TTL: | Target: | Other: |
| merlot.org | IN | TXT | 86400 | |||
| merlot.org | IN | MX | 86400 | cogsumx01.calstate.edu | pri: 10 | |
| merlot.org | IN | MX | 86400 | coweumx01.calstate.edu | pri: 10 | |
| merlot.org | IN | A | 137.145.20.122 | 86400 | ||
| merlot.org | IN | SOA | 86400 | mname: ns2.calstate.edu rname: wedns.calstate.edu serial: 2006043001 refresh: 14400 retry: 3600 expire: 1209600 minimum-ttl: 86400 |
||
| merlot.org | IN | NS | 86400 | ns1.calstate.edu | ||
| merlot.org | IN | NS | 86400 | ns3.calstate.edu | ||
| merlot.org | IN | NS | 86400 | ns2.calstate.edu |
Server Location
Site source
Show / hide source
<!--Start Header -->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>MERLOT - Multimedia Educational Resource for Learning and Online Teaching</title>
<meta name="description" content="Free and open online community of resources designed primarily for faculty, staff and students of higher education from around the world to share their learning materials and pedagogy. MERLOT is a leading edge, user-centered, collection of peer reviewed higher education, online learning materials, catalogued by registered members and a set of faculty development support services." />
<meta name="keywords" content="merlot,higher education,online learning,peer review,online community,learning resource library" />
<meta name="google-site-verification" content="tGqV1TjKpdRnv90GejvU_ERj0yPh54IWPmZqcCSA2UI" /><link href='http://fonts.googleapis.com/css?family=Droid+Sans' rel='stylesheet' type='text/css'>
<script type="text/javascript">
function testURL(form, inputURL)
{
var test=document.forms[form].elements[inputURL].value;
errorMsg = "The '{0}' field is empty";
errorMsg = errorMsg.split("'")
errorMsg = errorMsg[0] + inputURL + errorMsg[2];
if (test=="") alert (errorMsg);
else
{
if (test.indexOf("://") < 0)
{
test= "http://" + test;
document.forms[form].elements[inputURL].value = test;
}
newwin = window.open(test, 'newwin', '');
}
}
function testImage(img, form, inputURL)
{
var test=document.forms[form].elements[inputURL].value;
errorMsg = "The " + inputURL + " field is empty";
if (test=="") alert (errorMsg);
else
{
if (test.indexOf("://") < 0)
{
test= "http://" + test;
document.forms[form].elements[inputURL].value = test;
}
img.src = test;
}
}
function confirmDelete(obj) {
var msg = "Are you sure you want to delete this " + obj + "?";
ans = confirm(msg);
if (ans) {
return true;
} else {
return false;
}
}
function makeItemPrimary(formName, itemName, item) {
var deleteItemName = "_makeprimary" + itemName;
MyForm = document.forms[formName];
MyForm.elements[deleteItemName].value = item;
MyForm.submit();
}
function deleteItem(formName, itemName, item) {
var deleteItemName = "_delete" + itemName;
if (confirmDelete(itemName)) {
MyForm = document.forms[formName];
MyForm.elements[deleteItemName].value = item;
MyForm.submit();
}
}
function editItem(formName, itemName, item) {
var editItemName = "_edit" + itemName;
MyForm = document.forms[formName];
MyForm.elements[editItemName].value = item;
MyForm.submit();
}
function printDate(d){
document.writeln(d.substring(7,17));
}
/* This function is used to get cookies */
function getCookie(name) {
var prefix = name + "="
var start = document.cookie.indexOf(prefix)
if (start==-1) {
return null;
}
var end = document.cookie.indexOf(";", start+prefix.length)
if (end==-1) {
end=document.cookie.length;
}
var value=document.cookie.substring(start+prefix.length, end)
return unescape(value);
}
/* This function is used to delete cookies */
function deleteCookie(name,path,domain) {
if (getCookie(name)) {
document.cookie = name + "=" +
((path) ? "; path=" + path : "") +
((domain) ? "; domain=" + domain : "") +
"; expires=Thu, 01-Jan-70 00:00:01 GMT";
}
}
function checkLimit(limitField, limitNum) {
if (limitField.value.length > limitNum){
alert("You have exceeded the number of characters (" + limitNum +
") for this field.\n\nYour input has been truncated.");
limitField.value = limitField.value.substring(0, limitNum-1);
}
}
function limitCopy(limitField, limitNum) {
if (limitField.value.length > limitNum) limitField.value = limitField.value.substring(0, limitNum);
}
function confirmPost() {
if (confirm("Posting this composite review makes it appear on the material detail page and available to the public. Are you sure you want to continue?")) {
return true;
} else {
return false;
}
}
function confirmUnpost() {
if (confirm("Unposting this review will put this material back into the workflow process. Are you sure you want to continue?")) {
return true;
} else {
return false;
}
}
function showOther(mySelect, targetId) {
var selected = mySelect.options[mySelect.selectedIndex].text;
if (selected == 'Other') {
if (document.getElementById) {
target = document.getElementById(targetId);
if (target.style.display == "none"){
target.style.display = "";
}
}
} else {
if (document.getElementById) {
target = document.getElementById(targetId);
if (target.style.display != "none"){
target.style.display = "none";
}
}
}
}
function showOtherVisiblity(mySelect, targetId) {
var selected = mySelect.options[mySelect.selectedIndex].text;
if (selected == 'Other') {
if (document.getElementById) {
target = document.getElementById(targetId);
if (target.style.visibility == "hidden"){
target.style.visibility = "visible";
}
}
} else {
if (document.getElementById) {
target = document.getElementById(targetId);
if (target.style.visibility == "visible"){
target.style.visibility = "hidden";
}
}
}
}
/*
* These functions are for doing button rollovers. See the header.tag file
* for example of how to use. Must define the image objects in the specific
* file and the img tag needs to have the mouse event functions set to point
* to these functions.
*/
function buttondown(buttonid, idnum) {
if (idnum == undefined || idnum == null) {
idnum = "";
}
if (document.images) {
var iButton = document.getElementById(buttonid + idnum);
if (iButton) {
iButton.src = eval( buttonid + "down.src" );
}
}
}
function buttonup(buttonid, idnum) {
if (idnum == undefined || idnum == null) {
idnum = "";
}
if (document.images) {
var iButton = document.getElementById(buttonid + idnum);
if (iButton) {
iButton.src = eval( buttonid + "up.src" );
}
}
}
function alertOnBen(hostname) {
var hostname = top.location.hostname;
if (hostname.indexOf(".test.") >= 0 || hostname.indexOf(".dev.") >= 0) {
alert("Warning! This website is used for testing only. Information submitted for those purposes will not be saved long term. If you are doing work you want to keep after training, please contribute to www.merlot.org.");
}
}
</script>
<script type="text/javascript">
<!--
function popup(url, name, attributes) {
_popup(url, name, attributes,true);
}
function popupNoResize(url, name, attributes) {
_popup(url, name, attributes, false);
}
function _popup(url, name, attributes, resize) {
if (url.indexOf('?') != -1) {
url += '&_popup=true';
} else {
url += '?_popup=true';
}
if (resize == true) {
url += '&_resize=true';
}
p=window.open(url, name , attributes);
if (p.opener == null) {
p.opener = window;
}
if (window.focus) {
p.focus();
}
}
function popup_resizeTo( idOfDiv ) {
var oH = getRefToDivMod( idOfDiv ); if( !oH ) { return false; }
var x = window; x.resizeTo( screen.availWidth, screen.availWidth );
var oW = oH.clip ? oH.clip.width : oH.offsetWidth;
var oH = oH.clip ? oH.clip.height : oH.offsetHeight; if( !oH ) { return false; }
x.resizeTo( oW + 200, oH + 200 );
var myW = 0, myH = 0, d = x.document.documentElement, b = x.document.body;
if( x.innerWidth ) { myW = x.innerWidth; myH = x.innerHeight; }
else if( d && d.clientWidth ) { myW = d.clientWidth; myH = d.clientHeight; }
else if( b && b.clientWidth ) { myW = b.clientWidth; myH = b.clientHeight; }
if( window.opera && !document.childNodes ) { myW += 16; }
//second sample, as the table may have resized
var oH2 = getRefToDivMod( idOfDiv );
var oW2 = oH2.clip ? oH2.clip.width : oH2.offsetWidth;
var oH2 = oH2.clip ? oH2.clip.height : oH2.offsetHeight;
x.resizeTo( oW2 + ( ( oW + 200 ) - myW ), oH2 + ( (oH + 200 ) - myH ) );
}
function popup_close(refreshOpener) {
if (window.opener) {
if (refreshOpener) {
setTimeout("window.opener.location.reload()", 900);
}
setTimeout("window.close()",1100);
}
}
function getRefToDivMod( divID, oDoc ) {
if( !oDoc ) { oDoc = document; }
if( document.layers ) {
if( oDoc.layers[divID] ) { return oDoc.layers[divID]; } else {
for( var x = 0, y; !y && x < oDoc.layers.length; x++ ) {
y = getRefToDivNest(divID,oDoc.layers[x].document); }
return y; } }
if( document.getElementById ) { return oDoc.getElementById(divID); }
if( document.all ) { return oDoc.all[divID]; }
return oDoc[divID];
}
//-->
</script>
<script language="javascript">
function toggleDiv(divid) {
var theDiv = document.getElementById(divid);
if (theDiv.style.display == 'none') {
theDiv.style.display = 'block';
document.getElementById(divid + "_a").title = "Click to collapse";
document.getElementById(divid + "_b").title = "Click to collapse";
document.getElementById('img' + divid).src =
"/merlot/images/buttons/btn_down_collapsible.png;jsessionid=AE2717E863988DA98984AA8616410331";
} else {
theDiv.style.display = 'none';
document.getElementById(divid + "_a").title = "Click to expand";
document.getElementById(divid + "_b").title = "Click to expand";
document.getElementById('img' + divid).src =
"/merlot/images/buttons/btn_right_collapsible.png;jsessionid=AE2717E863988DA98984AA8616410331";
}
}
</script>
<script type="text/javascript">
function readMSCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
//get the language
function readMSLanguageCookie() {
var mode = readMSCookie("mstmode");
if (!mode || mode == 'manual') {
return null;
}
return readMSCookie("mstto");
}
function msTranslateLink(anchor) {
//alert("msTranslateLink");
var toLanguage = readMSLanguageCookie();
if (toLanguage && toLanguage != 'en') {
var u = anchor.href;
var url =
"http://www.microsofttranslator.com/bv.aspx?ref=Internal&from=en&to=" +
encodeURIComponent(toLanguage) + "&a=" +
encodeURIComponent(u);
anchor.href = url;
}
}
</script>
<LINK rel="stylesheet" type="text/css" href="/merlot/styles/merlotstyles.css;jsessionid=AE2717E863988DA98984AA8616410331">
<link rel="stylesheet" type="text/css" href="/merlot/styles/dlg.css;jsessionid=AE2717E863988DA98984AA8616410331"/>
<script type="text/javascript" src="/merlot/scripts/dlg.js;jsessionid=AE2717E863988DA98984AA8616410331"></script>
<script type="text/javascript">
<!--
if (document.images) {
searchbuttonup = new Image();
searchbuttonup.src = "/merlot/images/buttons/btn_search.gif;jsessionid=AE2717E863988DA98984AA8616410331" ;
searchbuttondown = new Image();
searchbuttondown.src = "/merlot/images/buttons/btn_search_mouseover.gif;jsessionid=AE2717E863988DA98984AA8616410331" ;
sessionokbuttonup = new Image();
sessionokbuttonup.src = "/merlot/images/buttons/btn_ok.gif;jsessionid=AE2717E863988DA98984AA8616410331" ;
sessionokbuttondown = new Image();
sessionokbuttondown.src = "/merlot/images/buttons/btn_ok_mouseover.gif;jsessionid=AE2717E863988DA98984AA8616410331" ;
}
function showFirstTimeoutDialog() {
ShowDialog('Your session is about to time out. Please save any work you are doing by submitting this page before your session times out and you lose everything on this page.', false);
}
function showSecondTimeoutDialog() {
CloseDialog();
ShowDialog('Your session has timed out. If you were working on anything on this page, it has been lost.', true);
}
// 1st message at 54 minutes, 2nd at 59 minutes (the timer parameter is in
// milliseconds)
sessionTimer = setTimeout("showFirstTimeoutDialog()", 54 * 1000 * 60 * 60);
sessionTimer = setTimeout("showSecondTimeoutDialog()", 59 * 1000 * 60 * 60);
// -->
</script>
</head>
<!--End Header -->
<!--Start Top -->
<body onload="indexOnLoad()">
<div id="main">
<table width="758" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="187" height="70"><a href="/merlot/;jsessionid=AE2717E863988DA98984AA8616410331"><img src="/merlot/images/merlotlogo.gif;jsessionid=AE2717E863988DA98984AA8616410331" width="187" height="53" border="0" alt="MERLOT - Multimedia Education Resource for Learning and Online Teaching"/></a></td>
<td>
<form name="simpleSearchForm" action="/merlot/simplesearchshim.htm;jsessionid=AE2717E863988DA98984AA8616410331" method="get">
<script type="text/javascript">
function ssCheckForRelevance() {
var hf = document.getElementById("sshiddensort");
var sf = document.getElementById("keywords");
if (sf.value != null && sf.value != '') {
hf.value = "relevance";
} else {
hf.value = "overallRating";
}
}
</script>
<!--form action="/merlot/materials.htm;jsessionid=AE2717E863988DA98984AA8616410331" method="POST" name="simpleSearchForm" onSubmit="changeAction(this);"-->
<table width="300" border="0" align="right" cellpadding="7" cellspacing="0" style="background-color:#ECECEC">
<tr>
<td>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="search"><nobr><label for="keywords" name="translateme">Search</label>
<spring:bind path="command.keywords">
<input name="keywords" id="keywords" type="text" size="20" tabindex="5000">
</spring:bind>
<select tabindex="5001" name="searchtype">
<option value="materials" name="translateme">materials</option>
<option value="learningexercises" name="translateme">learning exercises</option>
<option value="members" name="translateme">members</option>
<option value="fedsearch" name="translateme">search other libraries</option>
</select>
<input type="image"
src="/merlot/images/buttons/btn_search.gif;jsessionid=AE2717E863988DA98984AA8616410331"
alt="Search" name="simplesearchbutton" value="Search"
id="searchbutton"
style="vertical-align:bottom;padding-bottom:3px"
onmouseover="buttondown('searchbutton')"
onmouseout="buttonup('searchbutton')"
tabindex="5002" >
</td>
</tr>
<tr>
<td class="search" align="center">
<nobr><a href="/merlot/advSearchMaterials.htm;jsessionid=AE2717E863988DA98984AA8616410331" tabindex="5003" onclick="location.href='http://www.merlot.org/merlot/advSearchMaterials.htm;jsessionid=AE2717E863988DA98984AA8616410331'; return false;"><span name="translateme">advanced search materials</span></a>‎<span style="padding-left:0.5em;padding-right:0.5em">|</span><a href="/merlot/advSearchMembers.htm;jsessionid=AE2717E863988DA98984AA8616410331" tabindex="5004" onclick="location.href='http://www.merlot.org/merlot/advSearchMembers.htm;jsessionid=AE2717E863988DA98984AA8616410331'; return false;"><span name="translateme">advanced search members</span></a>‎<span style="padding-left:0.5em;padding-right:0.5em">|</span><a href="http://fedsearch.merlot.org" tabindex="5005" onclick="location.href='http://fedsearch.merlot.org'; return false;"><span name="translateme">search other libraries</span></a></nobr>
</td>
</tr>
</table>
</td>
</tr>
</table>
</form>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
<tr>
<td><img src="/merlot/images/spacer.gif;jsessionid=AE2717E863988DA98984AA8616410331" width="755" height="5" alt=""/></td>
</tr>
<!--End Tab Setup -->
<!--Start Tabs -->
<tr>
<td>
<table width="100%" cellspacing="0" cellpadding="0">
<tr>
<td style="background-repeat: no-repeat; background-image: url(/merlot/images/mm_navtab_on.gif;jsessionid=AE2717E863988DA98984AA8616410331); text-align:center; vertical-align:middle; color:white; font-size:11px,9px; border-right:1px solid white; cursor:pointer" width="125" height="22" onclick="location.href='/merlot/;jsessionid=AE2717E863988DA98984AA8616410331'">
<a href="/merlot/;jsessionid=AE2717E863988DA98984AA8616410331" style="text-decoration:none;color:white">
<span name="translateme">Home</span>
</a>
</td>
<td style="background-repeat: no-repeat; background-image: url(/merlot/images/mm_navtab.gif;jsessionid=AE2717E863988DA98984AA8616410331); text-align:center; vertical-align:middle; color:white; font-size:11px; border-right:1px solid white; cursor:pointer" width="125" height="22" onclick="location.href='/merlot/communities.htm;jsessionid=AE2717E863988DA98984AA8616410331'">
<a href="/merlot/communities.htm;jsessionid=AE2717E863988DA98984AA8616410331" style="text-decoration:none;color:white">
<span name="translateme">Communities</span>
</a>
</td>
<td style="background-repeat: no-repeat; background-image: url(/merlot/images/mm_navtab.gif;jsessionid=AE2717E863988DA98984AA8616410331); text-align:center; vertical-align:middle; color:white; font-size:11px; border-right:1px solid white; cursor:pointer" width="125" height="22" onclick="location.href='/merlot/materials.htm;jsessionid=AE2717E863988DA98984AA8616410331'">
<a href="/merlot/materials.htm;jsessionid=AE2717E863988DA98984AA8616410331?sort.property=overallRating" style="text-decoration:none;color:white">
<span name="translateme">Learning Materials</span>
</a>
</td>
<td style="background-repeat: no-repeat; background-image: url(/merlot/images/mm_navtab.gif;jsessionid=AE2717E863988DA98984AA8616410331); text-align:center; vertical-align:middle; color:white; font-size:11px; border-right:1px solid white; cursor:pointer" width="125" height="22" onclick="location.href='/merlot/members.htm;jsessionid=AE2717E863988DA98984AA8616410331'">
<a href="/merlot/members.htm;jsessionid=AE2717E863988DA98984AA8616410331?sort.property=contributions" style="text-decoration:none;color:white">
<span name="translateme">Member Directory</span>
</a>
</td>
<td style="background-repeat: no-repeat; background-image: url(/merlot/images/mm_navtab.gif;jsessionid=AE2717E863988DA98984AA8616410331); text-align:center; vertical-align:middle; color:white; font-size:11px; border-right:1px solid white; cursor:pointer" width="125" height="22"
onclick="location.href='/merlot/login.htm;jsessionid=AE2717E863988DA98984AA8616410331'"
>
<a href="/merlot/login.htm;jsessionid=AE2717E863988DA98984AA8616410331" style="text-decoration:none;color:white">
<span name="translateme">My Profile</span>
</a>
</td>
<td style="background-repeat: no-repeat; background-image: url(/merlot/images/mm_navtab.gif;jsessionid=AE2717E863988DA98984AA8616410331); text-align:center; vertical-align:middle; color:white; font-size:11px; cursor:pointer" width="125" height="22" onclick="location.href='http://taste.merlot.org'">
<a href="http://taste.merlot.org" style="text-decoration:none;color:white">
<span name="translateme">About Us</span>
</a>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td><img src="/merlot/images/goldbar.gif;jsessionid=AE2717E863988DA98984AA8616410331" width="100%" height="10" alt=""/></td>
</tr>
<tr>
<td>
</td></tr>
<tr>
<td><!-- End Tabs -->
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
var pageTracker = _gat._getTracker("UA-790089-29");
pageTracker._setDomainName(".merlot.org");
pageTracker._trackPageview();
</script>
<style type="text/css">
.fiyatext { vertical-align:top; padding-bottom:2px; }
.fiyatitle { padding-top:3px; padding-bottom:0px; }
.lm_img { vertical-align:top; padding-top:3px; text-align:center; }
</style>
<script type="text/javascript">
function indexOnLoad() {
// Load the images needed for login button
if (document.images) {
loginbuttonup = new Image();
loginbuttonup.src = "/merlot/images/buttons/btn_login.gif;jsessionid=AE2717E863988DA98984AA8616410331" ;
loginbuttondown = new Image();
loginbuttondown.src = "/merlot/images/buttons/btn_login_mouseover.gif;jsessionid=AE2717E863988DA98984AA8616410331" ;
contributenextbuttonup = new Image();
contributenextbuttonup.src = "/merlot/images/buttons/btn_next.gif;jsessionid=AE2717E863988DA98984AA8616410331" ;
contributenextbuttondown = new Image();
contributenextbuttondown.src = "/merlot/images/buttons/btn_next_mouseover.gif;jsessionid=AE2717E863988DA98984AA8616410331" ;
partneronlybuttonup = new Image();
partneronlybuttonup.src = "/merlot/images/buttons/btn_partner.gif;jsessionid=AE2717E863988DA98984AA8616410331" ;
partneronlybuttondown = new Image();
partneronlybuttondown.src = "/merlot/images/buttons/btn_partner_mouseover.gif;jsessionid=AE2717E863988DA98984AA8616410331" ;
}
// Check if we are in translated page
var beingTranslated = true;
var lcurl = document.location.href.toLowerCase();
if ((lcurl.indexOf("merlot.org") >= 0 && lcurl.indexOf("merlot.org") < 30) ||
(lcurl.indexOf("risner") >= 0 && lcurl.indexOf("risner") < 30) ||
(lcurl.indexOf("localhost") >= 0 && lcurl.indexOf("localhost") < 30) ||
(lcurl.indexOf("calstate") >= 0 && lcurl.indexOf("calstate") < 30)) {
beingTranslated = false;
}
/*
if (beingTranslated) {
var ct = document.getElementById('contributetable');
if (ct != null) {
ct.style.display = "none";
}
var rsjn = document.getElementById('joinnownotranslate');
if (rsjn != null) {
rsjn.style.display = "none";
}
} else {
var ct = document.getElementById('contributetable');
if (ct != null) {
ct.style.display = "inline-table";
}
var rsjn = document.getElementById('joinnownotranslate');
if (rsjn != null) {
rsjn.style.display = "table-row";
}
} */
}
function loginButtonAnalytics() {
pageTracker._trackPageview("/homepage/login");
pageTracker._setVar("member");
}
</script>
<table width="100%"><tr><td align="center">
<div id="TICKER" class="news" style="overflow:hidden; background-color:#F1EADA; width:755px" onmouseover="TICKER_PAUSED=true" onmouseout="TICKER_PAUSED=false">
<noscript><ul style="list-style-type:none"><li><a href="http://www.facebook.com/pages/MERLOT-Multimedia-Educational-Resource-for-Learning-and-Online-Teaching/225454444160837" target="_blank">Like MERLOT on Facebook</a></li><li><a href="http://grapevine.merlot.org" target="_blank">Winter Issue of Grapevine newsletter now available</a></li><li><a href="http://sloanconsortium.org/conference/2012/et4online/registration" target="_blank">Register now for the Emerging Technologies 2012 Conference</a></li><li><a href="http://taste.merlot.org/languagetranslation.html" target="_blank">Translate MERLOT into your preferred language with new options at bottom of page</a></li><li><a href="http://twitter.com/#!/MERLOTorg" target="_blank">Follow MERLOT on Twitter</a></li><li><a href="http://taste.merlot.org/peerreviewer.html" target="_blank">Become a MERLOT Peer Reviewer by Attending GRAPE Camp</a></li></ul></noscript>
</div>
</td></tr></table>
<script type="text/javascript">
<!--
//
// Bryan Tu
// 2/27/2009
//
TICKER_CONTENT = document.getElementById("TICKER").innerHTML;
TICKER_SPEED = 1;
TICKER_PAUSED = false;
function tickerStart() {
var tickerSupported = false;
TICKER_WIDTH = document.getElementById("TICKER").style.width;
// Firefox
if (navigator.userAgent.indexOf("Firefox")!=-1 || navigator.userAgent.indexOf("Safari")!=-1 || navigator.userAgent.indexOf("Opera") != -1) {
document.getElementById("TICKER").innerHTML = "<table cellspacing='0' cellpadding='0' width='100%'><tr><td nowrap='nowrap'><span id='TICKER_BODY' width='100%'> </span></td></tr></table>";
tickerSupported = true;
}
else {
document.getElementById("TICKER").innerHTML = "<div nowrap='nowrap' style='width:100%;'><span id='TICKER_BODY' width='100%'></span></div>";
tickerSupported = true;
}
if (!tickerSupported)
document.getElementById("TICKER").outerHTML = "";
else {
document.getElementById("TICKER").scrollLeft = 0;
document.getElementById("TICKER_BODY").innerHTML = TICKER_CONTENT;
document.getElementById("TICKER").style.display="block";
tickerTick();
}
getMERLOTNews();
}
/*
* Add special tracking of ticker clicks to the analytics
*/
function tickerAnalytics(turl) {
pageTracker._trackPageview("/ticker?url=" + turl);
}
function getMERLOTNews() {
var json = eval([
{
"Id":6,
"LinkText":"Register now for the Emerging Technologies 2012 Conference",
"Url":"http://sloanconsortium.org/conference/2012/et4online/registration"
},
{
"Id":10,
"LinkText":"Follow MERLOT on Twitter",
"Url":"http://twitter.com/#!/MERLOTorg"
},
{
"Id":11,
"LinkText":"Become a MERLOT Peer Reviewer by Attending GRAPE Camp",
"Url":"http://taste.merlot.org/peerreviewer.html"
},
{
"Id":7,
"LinkText":"Translate MERLOT into your preferred language with new options at bottom of page",
"Url":"http://taste.merlot.org/languagetranslation.html"
},
{
"Id":2,
"LinkText":"Like MERLOT on Facebook",
"Url":"http://www.facebook.com/pages/MERLOT-Multimedia-Educational-Resource-for-Learning-and-Online-Teaching/225454444160837"
},
{
"Id":2,
"LinkText":"Winter Issue of Grapevine newsletter now available",
"Url":"http://grapevine.merlot.org"
}
]
);
if ((json != null) && (json != "")) {
try {
var d = new Date();
var data = d.toLocaleDateString() + " ";
// Now loop through all the returned items and build HTML from them
for (var i = 0; i < json.length; i++) {
if (json[i].Url == null) {
data = data + " ** " +
json[i].LinkText;
}
else {
var url = '<a href="' + json[i].Url + '" ' +
'onclick="tickerAnalytics(\'' + json[i].Url +
'\')" target="_blank">';
var text = json[i].LinkText;
data = data + " ** " + url + text +
"</a>";
}
}
data = data + " ** ";
document.getElementById("TICKER_BODY").innerHTML =
data + data + data + data;
}
catch (err) {
alert('getMERLOTNews exception ' + err.description);
}
}
}
function tickerTick() {
if (!TICKER_PAUSED) {
document.getElementById("TICKER").scrollLeft += TICKER_SPEED * 1;
}
if (document.getElementById("TICKER").scrollLeft >=
document.getElementById("TICKER").scrollWidth -
document.getElementById("TICKER").offsetWidth) {
document.getElementById("TICKER").scrollLeft = 0;
}
window.setTimeout("tickerTick()", 25);
}
var ticker = new tickerStart();
//-->
</script>
<table width="100%" border="0" cellpadding="0" cellspacing="0" style="background-color: #FFFFFF">
<tr valign="top">
<td width="150" style="background-color: #ededed"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td valign="top" style="background-color: #FFFFFF"><img src="/merlot/images/spacer.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="1" height="1"></td>
</tr>
<tr>
<td valign="top">
<table width="100%" border="0" cellpadding="6" cellspacing="0" style="background-color: #E2E2E2">
<tr>
<td>
<table width="100%" border="0" cellspacing="2" cellpadding="4" style="background-color: 660000">
<tr style="background-color: #F2F2F2">
<td class="whatsnewheader" align="center"><a href="http://taste.merlot.org/Programs_and_Projects/ContentBuilder.html" style="font-size: 12px; color: #660000;font-weight:bold;">Create Learning<br/>Materials with<br/>MERLOT Content Builder</a></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign="top" style="background-color: #FFFFFF"><img src="/merlot/images/spacer.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="1" height="1"></td>
</tr>
<tr>
<td valign="top">
<table width="100%" border="0" cellpadding="6" cellspacing="0" style="background-color: #E2E2E2">
<tr>
<td>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="20" colspan="2" style="background-color: rgb(102, 0, 0);">
<h2 class="rightsideloginheader" style="margin:0"> Browse Collection</h2>
</td>
</tr>
<tr>
<td>
<ul style="list-style-type:none; margin:0; padding:0">
<li style="background-color: #F2F2F2; border: 1px solid #C1BAA9; font-size: 11px; margin:0; padding:2px;border-top:none;" class="leftside"><a href="/merlot/materials.htm;jsessionid=AE2717E863988DA98984AA8616410331?category=2175&sort.property=overallRating" title="Browse materials in the Arts category">Arts</a></li>
<li style="background-color: #F2F2F2; border: 1px solid #C1BAA9; font-size: 11px; margin:0; padding:2px;border-top:none;" class="leftside"><a href="/merlot/materials.htm;jsessionid=AE2717E863988DA98984AA8616410331?category=2202&sort.property=overallRating" title="Browse materials in the Business category">Business</a></li>
<li style="background-color: #F2F2F2; border: 1px solid #C1BAA9; font-size: 11px; margin:0; padding:2px;border-top:none;" class="leftside"><a href="/merlot/materials.htm;jsessionid=AE2717E863988DA98984AA8616410331?category=2267&sort.property=overallRating" title="Browse materials in the Education category">Education</a></li>
<li style="background-color: #F2F2F2; border: 1px solid #C1BAA9; font-size: 11px; margin:0; padding:2px;border-top:none;" class="leftside"><a href="/merlot/materials.htm;jsessionid=AE2717E863988DA98984AA8616410331?category=2327&sort.property=overallRating" title="Browse materials in the Humanities category">Humanities</a></li>
<li style="background-color: #F2F2F2; border: 1px solid #C1BAA9; font-size: 11px; margin:0; padding:2px;border-top:none;" class="leftside"><a href="/merlot/materials.htm;jsessionid=AE2717E863988DA98984AA8616410331?category=2513&sort.property=overallRating" title="Browse materials in the Mathematics and Statistics category">Mathematics and Statistics</a></li>
<li style="background-color: #F2F2F2; border: 1px solid #C1BAA9; font-size: 11px; margin:0; padding:2px;border-top:none;" class="leftside"><a href="/merlot/materials.htm;jsessionid=AE2717E863988DA98984AA8616410331?category=2605&sort.property=overallRating" title="Browse materials in the Science and Technology category">Science and Technology</a></li>
<li style="background-color: #F2F2F2; border: 1px solid #C1BAA9; font-size: 11px; margin:0; padding:2px;border-top:none;" class="leftside"><a href="/merlot/materials.htm;jsessionid=AE2717E863988DA98984AA8616410331?category=2787&sort.property=overallRating" title="Browse materials in the Social Sciences category">Social Sciences</a></li>
<li style="background-color: #F2F2F2; border: 1px solid #C1BAA9; font-size: 11px; margin:0; padding:2px;border-top:none;" class="leftside"><a href="/merlot/materials.htm;jsessionid=AE2717E863988DA98984AA8616410331?category=516814&sort.property=overallRating" title="Browse materials in the Workforce Development category">Workforce Development</a></li>
</ul>
</td>
</tr>
<tr>
<td colspan="2" align="center" class="leftsideshowmore"><a href="/merlot/categories.htm;jsessionid=AE2717E863988DA98984AA8616410331" class="leftsideshowmore">View category index</a></td>
</tr>
<tr>
<td valign="top" style="background-color: #E2E2E2"><img src="/merlot/images/spacer.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="1" height="1"></td>
</tr>
<tr>
<td valign="top" style="background-color: #E2E2E2"><img src="/merlot/images/spacer.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="1" height="1"></td>
</tr>
<!-- academy support services-->
<tr>
<td>
<table style="background-color:#f2f2f2; border:1px solid #660000;">
<tr class="hpdisc">
<td>
<img src="/merlot/images/compass_xsm.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="">
</td>
<td>
<a href="/merlot/materials.htm;jsessionid=AE2717E863988DA98984AA8616410331?category=372822&sort.property=overallRating" title="Browse Academic Support Services">Browse Academic Support Services</a>
</td>
</tr>
</table>
</td>
</tr>
<!-- academy support services-->
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign="top" style="background-color: #FFFFFF"><img src="/merlot/images/spacer.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="1" height="1"></td>
</tr>
<tr>
<td valign="top" style="background-color: #EDEDED"><table width="100%" border="0" cellpadding="6" cellspacing="0" style="background-color: #ededed">
<tr>
<td><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="whatsnewheader" height="40" valign="top"><h2 style="margin:0px; font-weight: normal;font-size: 12px; text-align:center;"><span class="rightsidejoinnow"><a href="http://taste.merlot.org/mediacenter.html">News & Announcements</a></span></h2></td>
</tr>
<tr>
<td colspan="2"><table width="100%" border="0" cellpadding="8" cellspacing="1" style="background-color: #C1BAA9">
<tr>
<td style="background-color: #F2F2F2">
<table cellpadding="0" cellspacing="2">
<tr>
<td height="31" valign="top"><h2 style="margin:0; font-weight:normal; font-size:12px; text-align:center"><span class="rightsidejoinnow"><a href="/merlot/whatsNew.htm;jsessionid=AE2717E863988DA98984AA8616410331">What's New in MERLOT</a></span></h2></td>
</tr>
<tr>
<td colspan="2"><hr/></td>
</tr>
<tr>
<td colspan="2">
<nobr>
<span class="whatsnewbold">33,972</span> materials,
</nobr>
<br/>
<nobr>
<span class="whatsnewbold">954</span> new materials,
</nobr>
</td>
</tr>
<tr>
<td colspan="2">
<nobr>
<span class="whatsnewbold">102,782</span> members,
</nobr>
<br/>
<nobr>
<span class="whatsnewbold">1,001</span> new members
</nobr>
</td>
</tr>
<tr>
<td colspan="2" align="right" class="leftsideshowmore"><a href="/merlot/whatsNew.htm;jsessionid=AE2717E863988DA98984AA8616410331" class="leftsideshowmore">Show more</a></td>
</tr>
<tr>
<td colspan="2"><hr/></td>
</tr>
<tr>
<td colspan="2"><span class="leftsideshowmore"><a href="/merlot/rss.htm;jsessionid=AE2717E863988DA98984AA8616410331"><img src="/merlot/images/rss.gif;jsessionid=AE2717E863988DA98984AA8616410331" border="0" alt="RSS"/> Subscribe now</a></span></td>
</tr>
</table>
</td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table>
</td>
<td width="1"><img src="/merlot/images/spacer.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="1" height="1"></td>
<td><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td valign="top" style="background-color: #877140">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td valign="top">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="2"><img src="/merlot/images/welcome2.gif;jsessionid=AE2717E863988DA98984AA8616410331" width="330" height="36" alt="Welcome to MERLOT"/></td>
</tr>
<tr>
<td><img src="/merlot/images/spacer.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="20" height="1"></td>
<td><span style="font-size:12px; font-weight:bold; color: #FFFFFF;">Putting Educational Innovations Into Practice</span></td>
</tr>
<tr>
<td><img src="/merlot/images/spacer.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="20" height="1"></td>
<td><span style="font-size:11px; color: #FFFFFF;">Find peer reviewed online teaching and learning materials. Share advice and expertise about education with expert colleagues. Be recognized for your contributions to quality education.<br/><br/></span></td>
</tr>
</table>
</td>
<td align="right">
<img src="/merlot/images/title_left2.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="120" height="83">
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign="top"><img src="/merlot/images/spacer.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="1" height="1"></td>
</tr>
<!-- beginning of exploring MERLOT-->
<tr style="background-color: #F1EADA" colspan="2">
<td> </td>
</tr>
<tr style="background-color: #F1EADA" colspan="2">
<td>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<h2 class="fiyaheader" style="margin-left:10px;margin-top:2px;margin-bottom:2px;color:#660000">
Exploring MERLOT
</h2>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td style="background-color: #F1EADA;color:#660000" colspan="2">
-----------------------------------------------------------------------------------------------------
</td>
</tr>
<tr style="background-color: #F1EADA">
<td valign="top" style="padding-left:5px;padding-right:5px">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<col width="8%" style="vertical-align:top;padding-left:4px;padding-right:4px"/>
<col width="42%" style="text-align:left;padding-left:0;margin-left:0;padding-right:4px"/>
<col width="8%" style="vertical-align:top;padding-left:4px;padding-right:4px"/>
<col width="42%" align="text-align:left;padding-left:0;margin-left:0;padding-right:4px"/>
<tr>
<td rowspan="2" class="lm_img">
<img src="/merlot/images/learningmaterials.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="33" height="28">
</td>
<td class="fiyatitle">
<a href="/merlot/materials.htm;jsessionid=AE2717E863988DA98984AA8616410331?sort.property=dateCreated"
class="fiyatitle">Learning Materials</a>
</td>
<td rowspan="2" class="lm_img">
<img src="/merlot/images/colleaguesindiscipline.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="33" height="28">
</td>
<td class="fiyatitle">
<a href="/merlot/members.htm;jsessionid=AE2717E863988DA98984AA8616410331?sort.property=dateCreated">
Colleagues Across Disciplines
</a>
</td>
</tr>
<tr>
<td class="fiyatext">
Browse new online learning materials in
different disciplines.
</td>
<td class="fiyatext">
Find new colleagues across disciplines.
</td>
</tr>
<tr>
<td rowspan="2" class="lm_img">
<img src="/merlot/images/personalcollections.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="33" height="28"/>
</td>
<td class="fiyatitle">
<a href="/merlot/portfolios.htm;jsessionid=AE2717E863988DA98984AA8616410331?sort.property=dateCreated">Personal Collections</a>
</td>
<td rowspan="2" class="lm_img">
<img src="/merlot/images/guestexperts.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="33" height="28">
</td>
<td class="fiyatitle">
<a href="/merlot/vsbMembers.htm;jsessionid=AE2717E863988DA98984AA8616410331">Guest Experts</a>
</td>
</tr>
<tr>
<td class="fiyatext">
View personal collections from people in
different disciplines.
</td>
<td class="fiyatext">
Find guest experts in the Virtual Speakers Bureau.
</td>
</tr>
<tr>
<td rowspan="2" class="lm_img">
<img src="/merlot/images/learningexercises.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="33" height="28"/>
</td>
<td class="fiyatitle">
<a href="/merlot/assignments.htm;jsessionid=AE2717E863988DA98984AA8616410331?sort.property=dateCreated">Learning Exercises</a>
</td>
<td rowspan="2" class="lm_img">
</td>
<td class="fiyatitle">
</td>
</tr>
<tr>
<td class="fiyatext">
Find learning exercises in different disciplines you can use with your students.
</td>
<td class="fiyatext">
</td>
</tr>
</table>
</td>
</tr>
<tr style="background-color: #F1EADA" colspan="2">
<td> </td>
</tr>
<!-- ending of exploring MERLOT-->
<tr>
<td valign="top"><img src="/merlot/images/spacer.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="1" height="1"></td>
</tr>
<tr>
<td valign="top" style="background-color: #660000; height:6">
</td>
</tr>
<!--beginning of discipline community-->
<tr>
<!--td valign="top" style="background-color: #F1EADA"-->
<td valign="top">
<table width="100%" border="0" cellspacing="0" cellpadding="10">
<tr>
<td>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="18"><h2 style="margin:0px; color: #5B4719; font-weight: bold; font-size: 13px;">Visit a Discipline Community</h2></td>
</tr>
<tr>
<td class="graytext">Find discipline expertise and online curricula to help you advance your career.</td>
</tr>
<tr>
<td><img src="/merlot/images/spacer.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="1" height="10"></td>
</tr>
<tr>
<td>
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="hpdisc">
<tr valign="top">
<td width="26%">
<ul style="list-style-type:none; padding:0 0 0 0; margin:0 2px 0 2px">
<li style="text-indent:-10px; margin-left:10px;"><img src="/merlot/images/hp_bullet.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="3" height="3" style="margin-right: 6px; margin-bottom: 3px;"><a href="http://agriculture.merlot.org" title="Go to Agriculture and Environmental Sciences community">Agriculture and Environmental Sciences</a></li>
<li style="text-indent:-10px; margin-left:10px;"><img src="/merlot/images/hp_bullet.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="3" height="3" style="margin-right: 6px; margin-bottom: 3px;"><a href="http://biology.merlot.org" title="Go to Biology community">Biology</a></li>
<li style="text-indent:-10px; margin-left:10px;"><img src="/merlot/images/hp_bullet.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="3" height="3" style="margin-right: 6px; margin-bottom: 3px;"><a href="http://business.merlot.org" title="Go to Business community">Business</a></li>
<li style="text-indent:-10px; margin-left:10px;"><img src="/merlot/images/hp_bullet.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="3" height="3" style="margin-right: 6px; margin-bottom: 3px;"><a href="http://chemistry.merlot.org" title="Go to Chemistry community">Chemistry</a></li>
<li style="text-indent:-10px; margin-left:10px;"><img src="/merlot/images/hp_bullet.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="3" height="3" style="margin-right: 6px; margin-bottom: 3px;"><a href="http://csd.merlot.org/" title="Go to Communication Sciences and Disorders community">Communication Sciences and Disorders</a></li>
</ul>
</td>
<td width="24%">
<ul style="list-style-type:none; padding:0 0 0 0; margin:0 2px 0 2px">
<li style="text-indent:-10px; margin-left:10px;"><img src="/merlot/images/hp_bullet.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="3" height="3" style="margin-right: 6px; margin-bottom: 3px;"><a href="http://criminaljustice.merlot.org/" title="Go to Criminal Justice community">Criminal Justice</a></li>
<li style="text-indent:-10px; margin-left:10px;"><img src="/merlot/images/hp_bullet.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="3" height="3" style="margin-right: 6px; margin-bottom: 3px;"><a href="http://engineering.merlot.org" title="Go to Engineering community">Engineering</a></li>
<li style="text-indent:-10px; margin-left:10px;"><img src="/merlot/images/hp_bullet.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="3" height="3" style="margin-right: 6px; margin-bottom: 3px;"><a href="http://english.merlot.org" title="Go to English community">English</a></li>
<li style="text-indent:-10px; margin-left:10px;"><img src="/merlot/images/hp_bullet.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="3" height="3" style="margin-right: 6px; margin-bottom: 3px;"><a href="http://facultydevelopment.merlot.org" title="Go to Faculty Development community">Faculty Development</a></li>
<li style="text-indent:-10px; margin-left:10px;"><img src="/merlot/images/hp_bullet.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="3" height="3" style="margin-right: 6px; margin-bottom: 3px;"><a href="http://firesafety.merlot.org" title="Go to Fire Safety community">Fire Safety</a></li>
<li style="text-indent:-10px; margin-left:10px;"><img src="/merlot/images/hp_bullet.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="3" height="3" style="margin-right: 6px; margin-bottom: 3px;"><a href="http://healthsciences.merlot.org" title="Go to Health Sciences community">Health Sciences</a></li>
<li style="text-indent:-10px; margin-left:10px;"><img src="/merlot/images/hp_bullet.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="3" height="3" style="margin-right: 6px; margin-bottom: 3px;"><a href="http://history.merlot.org" title="Go to History community">History</a></li>
</ul>
</td>
<td width="28%">
<ul style="list-style-type:none; padding:0 0 0 0; margin:0 2px 0 2px">
<li style="text-indent:-10px; margin-left:10px;"><img src="/merlot/images/hp_bullet.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="3" height="3" style="margin-right: 6px; margin-bottom: 3px;"><a href="http://informationtechnology.merlot.org" title="Go to Information Technology community">Information Technology</a></li>
<li style="text-indent:-10px; margin-left:10px;"><img src="/merlot/images/hp_bullet.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="3" height="3" style="margin-right: 6px; margin-bottom: 3px;"><a href="http://libraryandinformationservices.merlot.org/" title="Go to Library and Information Services community">Library and Information Services</a></li>
<li style="text-indent:-10px; margin-left:10px;"><img src="/merlot/images/hp_bullet.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="3" height="3" style="margin-right: 6px; margin-bottom: 3px;"><a href="http://mathematics.merlot.org" title="Go to Mathematics community">Mathematics</a></li>
<li style="text-indent:-10px; margin-left:10px;"><img src="/merlot/images/hp_bullet.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="3" height="3" style="margin-right: 6px; margin-bottom: 3px;"><a href="http://music.merlot.org" title="Go to Music community">Music</a></li>
<li style="text-indent:-10px; margin-left:10px;"><img src="/merlot/images/hp_bullet.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="3" height="3" style="margin-right: 6px; margin-bottom: 3px;"><a href="http://physics.merlot.org" title="Go to Physics community">Physics</a></li>
<li style="text-indent:-10px; margin-left:10px;"><img src="/merlot/images/hp_bullet.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="3" height="3" style="margin-right: 6px; margin-bottom: 3px;"><a href="http://psychology.merlot.org" title="Go to Psychology community">Psychology</a></li>
<li style="text-indent:-10px; margin-left:10px;"><img src="/merlot/images/hp_bullet.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="3" height="3" style="margin-right: 6px; margin-bottom: 3px;"><a href="http://sociology.merlot.org" title="Go to Sociology community">Sociology</a></li>
</ul>
</td>
<td width="22%">
<ul style="list-style-type:none; padding:0 0 0 0; margin:0 2px 0 2px">
<li style="text-indent:-10px; margin-left:10px;"><img src="/merlot/images/hp_bullet.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="3" height="3" style="margin-right: 6px; margin-bottom: 3px;"><a href="http://statistics.merlot.org" title="Go to Statistics community">Statistics</a></li>
<li style="text-indent:-10px; margin-left:10px;"><img src="/merlot/images/hp_bullet.gif;jsessionid=AE2717E863988DA98984AA8616410331" alt="" width="3" height="3" style="margin-right: 6px; margin-bottom: 3px;"><a href="http://tea