/***********************************************************************
'(c) Copyright Direct EDI, Inc. All Rights Reserved
'
' Project: Outgoing Documents Template
'
' Author: Stanislav
'
' Requirements: none
'
***********************************************************************/
/************************************************** GET ELEMENT *******/

function check(form)
    {
        var retVal = false
        if (! (/^\w+[-_\.]*\w+@\w+-?\w+\.[a-z]{2,4}$/.test(document.forms.ccoptin.ea.value)) )
            {
            alert ("Please enter email in correct format!") 
            document.forms.ccoptin.ea.value = ''
            document.forms.ccoptin.ea.focus()
            }
        else
            {
            retVal = true
            }
        return retVal;
}


jQuery(function($) {
	$(".edi_info_item a").click(function () {
		jQuery(this).toggleClass("minus");
		jQuery(this).parent().children("p").toggle();
		return false;
	});
});
