function jsconfirm(strText, strURL)
{
if(confirm(strText))
     {
     window.location = strURL
     }
 }
 function ChkAll() {
     for (var i = 0; i < document.form.elements.length; i++) {
         var obj = document.form.elements[i];
         if (obj.type == "checkbox")
             obj.checked = document.form.chk.checked;
     }
 }
 function openPopup(strurl, strname) {
     var popup;
     popup = window.open(strurl, strname, "menubar=no,width=350,height=280,toolbar=no,location=no,directories=no");
     popup.focus();
 }
 function openTranslate(strurl, strname) {
     var popup;
     popup = window.open(strurl, strname, "menubar=no,width=650,height=430,toolbar=no,location=no,directories=no");
     popup.focus();
 }
 function setCookie(c_name, value, exdays) {
     var exdate = new Date();
     exdate.setDate(exdate.getDate() + exdays);
     var c_value = escape(value) + ((exdays == null) ? "" : "; expires=" + exdate.toUTCString());
     document.cookie = c_name + "=" + c_value;
 }
 function getCookie(c_name) {
     var i, x, y, ARRcookies = document.cookie.split(";");
     for (i = 0; i < ARRcookies.length; i++) {
         x = ARRcookies[i].substr(0, ARRcookies[i].indexOf("="));
         y = ARRcookies[i].substr(ARRcookies[i].indexOf("=") + 1);
         x = x.replace(/^\s+|\s+$/g, "");
         if (x == c_name) {
             return unescape(y);
         }
     }
 }
