function openWin(intWidth, intHeight, boolScroll, URL) {
	var theTop=80;
  	var theLeft=80;
	popup = window.open(URL, "loading", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars="+boolScroll+",resizable=true,width="+intWidth+", height="+intHeight+", top="+theTop+", left="+theLeft);
	popup.focus();
	
}

//////////////////////////////////////////////////////////////////////////////

// pops open a non scolling window
/*function openWin(URL, intWidth, intHeight) {

	var theTop=80;
  	var theLeft=80;
	
	newWindow = window.open(URL, "loading", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=true,width="+intWidth+", height="+intHeight+", top="+theTop+", left="+theLeft);
}

//////////////////////////////////////////////////////////////////////////////

// pops open a scrolling window
function openScrollWin(URL, intWidth, intHeight) {

	var theTop=80;
  	var theLeft=80;
	
	newWindow = window.open(URL, "loading", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=true,width="+intWidth+", height="+intHeight+", top="+theTop+", left="+theLeft);
}*/

//////////////////////////////////////////////////////////////////////////////

	function alertMessage(strMessage) {
		alert(strMessage);
	}
//////////////////////////////////////////////////////////////////////////////

	// prompt confirm delete of item
	function confirmDelete(strItem) {
		return confirm("Are you sure you want to delete "+strItem+"?");	
	}
//////////////////////////////////////////////////////////////////////////////


//////////////////////////////////////////////////////////////////////////////
