
	function ConfirmDelete(text,url) {
		messageStr = "You are about to delete this item: \n" + text + "\n Press 'OK' to continue.";
		if (confirm(messageStr)) {
			location.href = url; 
		}
	}

	function ConfirmAction(text,url) {
		messageStr = "You are about to perform the following action: \n\n" + text + "\n\n Press 'OK' to continue.";
		if (confirm(messageStr)) {
			location.href = url; 
		}
	}
	
/* function to open floater window */

var remote=null;
/* var w=430; */
/* var h=480; */
var x=0;

function floater(u,w,h) {
  args="width="+w+",height="+h+",resizable=no,scrollbars=yes,status=0";

  remote=window.open(u, "floater", args);
  if (remote != null) {
    if (remote.opener == null)
      remote.opener = self;
  }
  if (x == 1) { return remote; }
}	
	

