//
// For mantis #23511
// Warning that the user is leaving the MoneyGram marketing website.
//

function mgv_redirect( url ) {
	var msg;
	
	msg = 'Leaving?\n\n'
	+ 'By selecting "OK" you will leave MoneyGram and enter a third-party website.\n\n'
	+ 'MoneyGram does not control this website and is not responsible for the content of, or products and services provided by the third party site, nor does it guarantee the system availability or accuracy of information contained in the site.'
	+ 'Please note that the third party site may have privacy and information security policies that differ from those of MoneyGram.';
	
	var ok = confirm(msg);
	
	if (ok == true) {
		open(url);
	}
	else {
		return false;
	}
}


