// JavaScript Document

/**
 * Loads the given page in the active window
 * usage: 
 * <a href="JavaScript: loadURL('http://www.newurl.com')">www.newurl.com</a>
 * @param   string   theURL
 *
 * @return  void
 */
function loadURL(theURL) {
	document.location = theURL;
} // end of the 'loadURL()' function