// JavaScript Document
function popup(url) { 
        //var url = goPage; 
window.open(url,'popup','width=420,height=458,resizable=yes,scrollbars=no'); 
} 
function nonBYUsite(url) { 
/*    if( confirm("Brigham Young University has provided this link to an Internet site maintained by a third party.  Although intended to be of high quality and educational value, Brigham Young University's provision of this external link does not imply approval, warrant the accuracy or timelineness of the information, or endorsement of the website, its sponsoring agencies, organizations, views, products or services.") ) 
        window.open(url); */
	var newURL = '/home/non-byu-site.cfm?l='+url;
	window.open(newURL,'_blank');
	//alert(newURL);
}    