// Functions for quick quote selected text (for quickpost)
function copyQ() { // Simple quoting without author
 txt='' 
 if (document.getSelection) {
   txt=document.getSelection()
 } else if (document.selection) {
   txt=document.selection.createRange().text;
 } 
 txt='[QUOTE]'+txt+'[/QUOTE]\n'
} 

function copyQA(author) { // Simple quoting with author
 txt='' 
 if (document.getSelection) {
   txt=document.getSelection()
 } else if (document.selection) {
   txt=document.selection.createRange().text;
 } 
 txt='[QUOTE='+author+']'+txt+'[/QUOTE]\n'
} 


function pasteQ() { 
document.REPLIER.Post.value=document.REPLIER.Post.value+txt; 
} 

