
<!--

function keyt(key){
document.form.q.value+=key;
document.form.q.focus();  
}

function singlequote() {
document.form.q.value+="\'";
document.form.q.focus();                
}

function doublequote() { 
document.form.q.value+="\"";
document.form.q.focus();     
}

function clearall() {
document.form.q.value="";
document.form.q.focus();
}


function blankspace()  {
document.form.q.value+=" ";
document.form.q.focus();
}

function pipe() {
document.form.q.value+="|";
document.form.q.focus();

}

function backspace(x){
document.form.q.value = document.form.q.value.substring(0,document.form.q.value.length-x);
document.form.q.focus();
}

function backslash(){
document.form.q.value+="\\";
document.form.q.focus();

}

function swap_img(x,iname){
iname.src='image/' + x + '.gif';
}

//-->
