﻿function changeClass(obj, className) {
 obj.className = className;
}

function HandleDeleteWithConfirmation(ctl , cmd )
{
    var iRet = confirm('Are you sure you want to delete?');
    if ( iRet == 0 ) return;

    __doPostBack(ctl.id,cmd);
}

function OSWSize(window_name,NewLink,width,height,menubar,resize,scroll) {
  var myWindow = window.open(NewLink, window_name, "menubar="+menubar+",location=yes,toolbar=yes,resizable="+resize+",scrollbars="+scroll+",status=1,width="+width+",height="+height);
}
