﻿function openWin(address, w, h, name)
        {
            var wnd = window.radopen(address, name);	            	            
            wnd.setSize(w,h);
           
        }

function realPostBack(eventTarget, eventArgument)
 {
 var x= confirm('Are you sure? You will not be able to undo this delete.');
 if(x)
 {
   __doPostBack(eventTarget, eventArgument);
   }
   else
   {
   }
 }

