// global Javascript functions

function launchQuoteWindow(quoteURL) {
	var quoteWin = window.open(quoteURL,"qpop","width=810,height=500,resizable=yes,scrollbars=yes,status=yes,location=no");
	return false;
}

function showWording(WordingURL) {
	var wordingWin = window.open(WordingURL,"wPop","width=600,height=400,resizable=yes,scrollbars=yes,toolbar=yes,location=no");
	return false;
}

function jumpTo(NewURL) {
	window.location = NewURL;
}
