function rollBG(menuItem)          // Rollover text for index page menu items{    var newText = "";                   // Set the variable for what the new text will be    var labelDiv = document.getElementById( "projectLabel" );   // Get the target DIV tag      if( menuItem == 'out' )     {          newText = document.createTextNode(" ");  // Set replacement text	    labelDiv.replaceChild( newText, labelDiv.firstChild );  // replacing with new text	    return;    }         if( menuItem == 'about' )          // If menu item is 'About this movie'....     {          newText = document.createTextNode("About this movie");  // Set replacement text	    labelDiv.replaceChild( newText, labelDiv.firstChild );  // replacing with new text	    return;    }    }// Simple send mail script by Argonaut-entfunction sendMail(name,domain,subject){	var theString = 'mailto:' + name + '@' + domain + '?subject=' + subject;	window.location = theString;}