﻿// JScript File
function clickButton(e, buttonid){
    var evt = e ? e : window.event;
    var bt = document.getElementById(buttonid);
    if(bt){
        if(evt.keyCode == 13){
            bt.click();
            return false;
        }
    }
}

// Scripts added for homepage
function cImageOver(contain1, imgname, imgloc){
	document[imgname].src=imgloc;
	contain1.style.borderRight='2px solid #CCC';
}
function cImageOut(contain1, imgname, imgloc){
	document[imgname].src=imgloc;
	contain1.style.borderRight='0px solid #CCC';
}

function realPDFLink(ele, doc){
    //location.href = "http://now.minco.com/elqNow/elqRedir.htm?ref="+doc;
    //location.href = "http://now.eloqua.com/elqNow/elqRedir.htm?ref="+unescape(doc);
    //location.href = "/elqNow/elqRedir.htm?ref="+unescape(doc);
    document.getElementById(ele).href="/elqNow/elqRedir.htm?ref="+doc;
}