<!-- ShayZone html comment generator /-->
<!-- go back 1 (backspace) /-->
function goback(){
 var temp_val = document.nick.fullnickname.value
 temp_val=temp_val.substring(0, temp_val.length-1)
 document.nick.fullnickname.value=temp_val
 document.nick.fullnickname.focus()
}
<!-- Add character nickname /-->
function addnickchar(kar)
{
 var temp_val = document.nick.fullnickname.value
 temp_val+=kar
 document.nick.fullnickname.value=temp_val
 document.nick.fullnickname.focus()
}
<!-- Select the nickname & copy to clipboard /-->
function select_nick(theField) {
 var temp=eval("document.nick.fullnickname")
 temp.focus()
 temp.select()
 text=temp.createTextRange()
 text.execCommand("Copy")
 alert("Now go to the section you want to make the comment and the use of the following key combination: 'CTRL+V'")
}

<!-- Go back 1 (backspace) /-->
function goback(){
var temp_val = document.nick.fullnickname.value
 temp_val=temp_val.substring(0, temp_val.length-1)
 document.nick.fullnickname.value=temp_val
 document.nick.fullnickname.focus()
}
<!-- Add character nickname /-->
function addnickchar(kar)
{
 var temp_val = document.nick.fullnickname.value
 temp_val+=kar
 document.nick.fullnickname.value=temp_val
 document.nick.fullnickname.focus()
 }
<!-- Select the nickname & copy to clipboard /-->
function select_nick(theField) {
 var temp=eval("document.nick.fullnickname")
 temp.focus()
 temp.select()
 text=temp.createTextRange()
 text.execCommand("Copy")
 alert("To copy text, press- 'CTRL+C'- \n\                  ")
}


