// JavaScript Document
function externalLink(theURL,winName) {
	alert('You are now leaving Denver Community CU\'s website and visiting a partner services site.  Denver Community Credit Union is not responsible for services or products affiliated with partner services.');
	window.open(theURL,winName,'status=yes,scrollbars=yes,resizable=yes');
	}
	
// For the Spanish version
function SP_externalLink(theURL,winName) {
	alert('Usted va a visitar un sitio Web fuera de Denver Community.  Denver Community no es responsable de los productos o servicios afiliados con estos sitios.');
	window.open(theURL,winName,'status=yes,scrollbars=yes,resizable=yes');
	}