// JavaScript Document
function startComment(){
if (navigator.appName=="Netscape"&&parseFloat(navigator.appVersion)<=4.77){
document.write("<!--")
}
else{
	document.write("")
}
}

function endComment(){
if (navigator.appName=="Netscape"&&parseFloat(navigator.appVersion)<=4.77){
document.write("-->")
}

else{
	document.write("")
}
}
