// JavaScript Document

function openPopup(theURL,winName,features)
	{
	  var winVar = window.open(theURL,winName,features);
	  if(winVar != null) {
		winVar.focus();
	  }
	}
	
function openNewWindow(URLtoOpen, windowName, windowFeatures) { 
	newWindow=window.open(URLtoOpen, windowName, windowFeatures); 
}

function confirmSubmit(ttt,id) {
var msg;
msg= "Confirm delete the data ?  - Title : " + ttt ; //+ " - ID= "+id;
var agree=confirm(msg);
if (agree)
return true ;
else
return false ;
}