function partnerPop(popurl){
var winpops=window.open(popurl,"","width=600,height=600,toolbar=1,location=1,directories=1,status=1,scrollbars=1,menubar=1,resizable=1,left=100,top=150")
}

function footerPop(popurl){
var winpops=window.open(popurl,"","width=600,height=600,toolbar=1,location=1,directories=1,status=1,scrollbars=1,menubar=1,resizable=1,left=100,top=150")
}

myPix = new Array("/business-resource-center/assets/images/feat-home-01.jpg" , "/business-resource-center/assets/images/feat-home-02.jpg" , "/business-resource-center/assets/images/feat-home-03.jpg" , "/business-resource-center/assets/images/feat-home-04.jpg")
imgCt = myPix.length

function choosePic() {
	if (document.images) {
		randomNum = Math.floor
			((Math.random() * imgCt))
		document.featImg.src =
			myPix[randomNum]
	}
}

function MaxLength(control, maxChars)
{
    if(control.value.length >= maxChars)
    {
        alert('This field is limited to 500 characters.');
        event.returnValue = false;
        return false;
    }
}

function MaxLengthCustom(source, arguments)
{
    var control = document.getElementById('txtMessage');
    if(control.value.length > 500)
    {
        arguments.IsValid = false
    }
}
