function CopyQuick()
{ window.txt = ''; if (txt = window.getSelection)
txt = window.getSelection().toString(); else
txt = document.selection.createRange().text; return txt;}
function PasteQuick(name,postid)
{ if(document.REPLIER.Post)
if (window.txt.replace(" ","") != "")
{ document.REPLIER.Post.value +='[quote '+name+', '+postid+']'+window.txt+'[/quote]'
var f_reply = document.getElementById('qr_open'); if (f_reply.style.display == "none") { f_reply.style.display = "";}
document.REPLIER.Post.focus(); scroll(0,10000);}
}

