function popWin(url,w,h,name,resizable,toolbar,left,top,sb)
{  

leftVal = (screen.width - w  ) / 2;
topVal = (screen.height - h ) / 2;

var features ="location=no,menubars=no,"+"width="+w+"," +"height="+h+","+"resizable="+resizable+"," +"scrollbars="+sb+"," + "status=no," +	"titlebar=no," +"toolbar="+toolbar+"," +"left="+leftVal+"," +"top="+topVal;	//var win = window.showModalDialog(url,"","dialogWidth:"+w+"px;dialogHeight:"+h+"px;help:no;status=no;dialogScrollbars=no");
var win = window.open(url,name,features);

}

function ConfirmDel(paramvalue)
{
	if (confirm("Are your sure you want to delete this record?")) {		
		   document.location = paramvalue;
		}
}
