function confirm_delete(name, text){
var f=name;
//alert(f);
	if(confirm(text))
	{
		document.forms[f].submit();
	}

}

function changeStatus(text) {
	window.status=text;
}

function openWindowXY(url, X, Y){
	var str="toolbar=0,location=0,directories=no,status=no,menubar=0,scrollbars=0,resizable=no,copyhistory=no,width=" + X + ",height=" + Y + ",screenX=10,screenY=10,top=10,left=10";
winResult=open(url, "displayWindow", str);
}
