// LAMP Site JavaScript Document

//Opens a new browser window; from Dreamweaver Behaviors; used mostly for outside Web pages:

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

/*The source of the following script, for the LAMP Diagram Image Map, is the W3 Schools site, at http://www.w3schools.com/js/tryit.asp?filename=tryjs_imagemap. This script creates the following effect: when the user moves his/her cursor over the "hot spots" of the image map, text explaining each part of the device depicted in the image map is displayed.*/


function writeText(txt)
{
document.getElementById("desc").innerHTML=txt
}