function cdel(w) {
	if(confirm("Delete Confirmation!..\n\n Are Sure that you want to delete this?.."))
	{
		return true;
	}
	else
	{
		return false;
	}
}


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function openPopup(page)
{
	window.open(page,'','height=550,width=730,scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no');
}



function openNewWindow(url, name, width, height)
{  
var k="Yes";
popupWin = window.open(url, name, 'width=' + width + ',height=' + height + ', scrollBars='+k+',resizable='+k);
}
