        function headerRollOver(imgName, imgSrc) {
            if(document.images) {document.images[imgName].src=imgSrc;}
            else if (document.getElementById){document.getElementById(imgName).src=imgSrc;}
        }
        function headerRollOff(imgName, imgSrc) {
            if(document.images){document.images[imgName].src=imgSrc;}
            else if (document.getElementById){document.getElementById(imgName).src=imgSrc;}
        }
function regnow() {
	window.location.href = 'http://www.dma09.org/registration/pricing.php';
	window.open('http://www.dma09.org/includes/ga-linker.php');
	//window.open('https://www.compusystems.com/servlet/ar?evt_uid=534');
}
function newwin(filename,wd,ht,docloc)
{

var TopPosition=0;
var LeftPosition=0;
var defwd=400;   //sets a default window width if no width is passed
var defht=300;    //sets a default window height if no height is passed
var padwd=20;   //sets extra padding for the width
var padht=25;    //sets extra padding for the height
var newwinpict=null;

        if(wd==null)wd=defwd;else wd+=padwd;
        if(ht==null)ht=defht;else ht+=padht;
        if(newwinpict && !newwinpict.closed)newwinpict.close();
        LeftPosition = (screen.width) ? (screen.width-wd)/2 : 0;
        TopPosition = 20;
        newwinpict = window.open(filename,"newwin1",'toolbar=no,location=no,directories=no,menuebar=no,width='+wd+',height='+ht+',top='+TopPosition+', left='+LeftPosition+',resizable=yes,scrollbars=yes');
        newwinpict.focus();
}

                       function RunSearch()
                            {
                                     var     keyword        = document.getElementById('SearchBox');
                                     // basic validation
                                     if(keyword != null && keyword.value.length != 0)
                                     {
/* Open Global Search in a new window */                                                
window.open('http://mydma365.bdmetrics.com/generalcontentsearch.aspx?utm_source=mydma365&utm_medium=globalsearch&utm_campaign=globalsearch&keyword=' + encodeURIComponent(keyword.value)); 
/* Open Global Search in a same window 
window.location = 'http://mydma365.bdmetrics.com/generalcontentsearch.aspx?utm_source=mydma365&utm_medium=globalsearch&utm_campaign=globalsearch&keyword=' + encodeURIComponent(keyword.value); */
                                     }
                            }