Your IP : 216.73.216.155


Current Path : /usr/local/ispmgr/skins/sirius/
Upload File :
Current File : //usr/local/ispmgr/skins/sirius/tickets_quote.js

var quotes = new Array();var last_quote_id = 0;function Add_Quote (id) {var obj = document.frm.text;var val = quotes[id] + "\n";if (document.selection) {obj.focus();sel = document.selection.createRange();sel.text = val;} else if (obj.selectionStart || obj.selectionStart == '0') {obj.value = obj.value.substring(0, obj.selectionStart) + val +obj.value.substring(obj.selectionEnd, obj.value.length);} else {obj.value = val;}}function Hotkey_AltQuote (code, e) {if ((code == 81) && ((e.altKey == true) || (e.ctrlKey == true)) && last_quote_id) {Add_Quote (last_quote_id);}}RegisterHotkeyEvent ('quotelast', Hotkey_AltQuote);