<!--

function openFeedbackWindow(thePage) {
	var winl = (screen.width-455)/2;
	var wint = (screen.height-350)/2;
	var settings  ='height=455,';
      settings +='width=350,';
      settings +='top='+wint+',';
      settings +='left='+winl+',';
      settings +='scrollbars=yes,';
      settings +='resizable=no';

	feedbackWin=window.open(thePage,'feedback',settings)
}

function openPrintWindow(thePage) {
	var winl = (screen.width-600)/2;
	var wint = (screen.height-400)/2;
	var settings  ='height=400,';
      settings +='width=600,';
      settings +='top='+wint+',';
      settings +='left='+winl+',';
      settings +='scrollbars=yes,';
      settings +='resizable=no';

	printWin=window.open(thePage,'print',settings)
}

function openEmailWindow(thePage) {
	emailWin=window.open(thePage,'email','width=350,height=455')
}

function WinOpen(url,x,y) {
  var options = "toolbar=no,scrollbars=no,resizable=no,width=" + x + ",height=" + y;
  msgWindow=window.open(url,"WinOpen",options);
}

function ConfirmDelete() {
	var Confirmation;
	Confirmation = "Are you sure you want to delete this?\n Click OK to continue or Cancel to cancel deletion process.";
	if (confirm(Confirmation)) {
		return true;
	}
	else {
		return false;
	}
}

//-->