// Copyright 2001 ACI Worldwide. All rights reserved

function postPage(strURL)  {
 this.location.href = strURL;
}

function confirmDialog(strMsg) {
	return confirm(strMsg)
}

function alertDialog(strMsg) {
	alert(strMsg);
	return false;
}


