// JavaScript Document
function include_dom(script_filename) {
    var html_doc = document.getElementsByTagName('head').item(0);
    var js = document.createElement('script');
    js.setAttribute('language', 'javascript');
    js.setAttribute('type', 'text/javascript');
    js.setAttribute('src', script_filename);
    html_doc.appendChild(js);
    return false;
}

function include(script_filename){
	document.write('<script language="JavaScript" type="text/javascript" src="'+script_filename+'"></script>');
	return false;
}

function openQuickLink(u1, cn) {
    if (confirm("You are now leaving the " + cn + " web site.")) {
            window.open(u1, "_blank", "scrollbars=yes,status=yes,toolbar=yes,menubar=yes,resizable=yes,alwaysRaised,location=yes");
        }
}

function openQuickLinkGA(u1, gaurl1, cn) {
    if (confirm("You are now leaving the " + cn + " web site.")) {
                urchinTracker(gaurl1);
            window.open(u1, "_blank", "scrollbars=yes,status=yes,toolbar=yes,menubar=yes,resizable=yes,alwaysRaised,location=yes");
        }
}

