function popup(url,width,height,scrollbars)	{
	if (arguments.length < 2) {width  = 400;}
	if (arguments.length < 3) {height = 600;}
	if (arguments.length < 4) {scrollbars = 'no';}
	window.open(url,"","toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=" + scrollbars + ",resizable=yes,width=" + width + ",height=" + height)
}
function displayWindow(url, width, height) {
       var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=1,scrollbars=yes,menubar=yes,status=yes' );
	Win.focus();
}
/*function act(action) {
	willDelete = confirm("Stop! Are you sure you want to " + action + "?");
	if (willDelete) {return true;} else {return false;}
}*/
function act(action) {
	return confirm("Stop! Are you sure you want to delete this " + action + "?");
}
function pmt(action) {
	return confirm(action);
}
function popHelp(url,width,height,scrollbars) {
	if (arguments.length < 2) {width  = 800;}
	if (arguments.length < 3) {height = 550;}
	if (arguments.length < 4) {scrollbars = 'Yes';}
	window.open(url,"","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=" + scrollbars + ",resizable=yes,width=" + width + ",height=" + height)
}
function help(txt) {
	document.getElementById("help_text").innerHTML = txt;
}
