// offeringsdetail.js

var isPopup = (typeof window.opener=='object')
var sURL = '/offerings/products.php4';

function fChangeButton() {
	if (!isPopup) document.frm.done_btn.value = 'MORE...'
}

function fGoto(isChangeParent) {
	if (isPopup) {
		if (isChangeParent) window.opener.location.href = sURL;
		window.close();
	}
	else
		location.href = sURL;
}
