function MakeURL(sSub,sL01,sE01,sPath,sFile,sE02,sClass,sName,sMSG) {

if (sFile == '') {
	(sDot = '')
} else {
	(sDot = '.')
}

if (sMSG == '') {
	tLink= sSub + "." + sL01 + '.' + sE01 + "/" + sPath + sFile + sDot + sE02
	document.write 
		(
			'<a href="',
			'http://',
			sSub,
			'.',
			sL01,
			'.',
			sE01,
			'/',
			sPath,
			sFile,
			sDot,
			sE02,
			'" ',
			' onmouseover="window.status=\'http://'+tLink+'\';return true;"',
			' onmouseout="window.status=\'\'; return true;"' +sClass+'>',
			sName,
			'</a>'
		);
} else {
	document.write 
		(
			'<a href="',
			'http://',
			sSub,
			'.',
			sL01,
			'.',
			sE01,
			'/',
			sPath,
			sFile,
			sDot,
			sE02,
			'" ',
			' onmouseover="window.status=\''+sMSG+'\';return true;"',
			' onmouseout="window.status=\'\'; return true;"' +sClass+'>',
			sName,
			'</a>'
		);
}

}
