function hide_popup(){
	$("#popup").css({'display':'none'});
	$(".opac").css({'display':'none'});
}
function show_popup(){
	$("#popup").css({'display':'block'});
	$(".opac").css({'display':'block'});
}
function renewCode(){
	var myRandom = parseInt(Math.random()*99999999);
	$('#c_security_img').attr( 'src', '../security/random.php?what=contact&renew=true&rand=' + myRandom );
}
function ValidateContact(){
	var fl = "";
	var bull = "<br />\n&nbsp;&bull;&nbsp;";
	var validRegExp;
    var strEmail;

	if ($('#c_name').val() == "" ) {
		fl = fl + bull + "Name\n";
    }
	if ($('#c_email').val() == "" ) {
        fl = fl + bull + "Email Address\n";
    }
	validRegExp = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/i;
    strEmail = $('#c_email').val();
	if ($('#c_email').value != "") {
        if (strEmail.search(validRegExp) == -1) {
            fl = fl + bull +"Invalid Email Adress\n";
        }
    }
	if ($('#c_number').val() == "") {
		fl = fl + bull + "Mobile Number\n";
    }
	if ($('#contact-list-sel').val()== '') {
		fl = fl + bull + "Services\n";
    }
	if ($('#c_comment').val() == "" ) {
		fl = fl + bull + "Comment\n";
    }
	if ($('#c_security_code').val() == "" || ($('#c_security_code').val() == 'Enter security code')) {
		fl = fl + bull + "Security code\n";
    }
	if ($('#c_number').val().length < 11) {
		fl = fl + bull + "Mobile number must be minimum 11 digits\n";
    }

	if (fl == ""){
        return ( true );
    } else {
        $('#idErrorC').html("The following fields are required:\n\n" + fl);
        return( false );
    }
}

function ValidateMailing()
{
	var fl = "";
	var bull = "<br />\n&nbsp;&bull;&nbsp;";
	var validRegExp;
    var strEmail;

	if ($('#m_name').val() == "" || ($('#m_name').val() == 'Name')) {
		fl = fl + bull + "Name\n";
    }
	if ($('#m_email').val() == "" || ($('#m_email').val() == 'Email Address')) {
        fl = fl + bull + "Email Address\n";
    }
	validRegExp = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/i;
    strEmail = $('#m_email').val();
	if ($('#m_email').value != "") {
        if (strEmail.search(validRegExp) == -1) {
            fl = fl + bull +"Invalid Email Adress\n";
        }
    }
	if ($('#m_number').val() == "" || ($('#m_number').val() == 'Mobile Number')) {
		fl = fl + bull + "Mobile Number\n";
    }
	if ($('#mailing-list-sel-1').val()== '') {
		fl = fl + bull + "Choose Network\n";
    }
	if ($('#mailing-list-sel-2').val()== '') {
		fl = fl + bull + "Choose Destination\n";
    }
	if (fl == ""){
        return ( true );
    } else {
        $('#idError').html("The following fields are required:\n\n" + fl);
        return( false );
    }
}
/*--------------BEGIN INITIALIZE LEFT ACCORDION NAVIGATION -----/*/
ddaccordion.init({ //top level headers initialization
	headerclass: "expandable", //Shared CSS class name of headers group that are expandable
	contentclass: "categoryitems", //Shared CSS class name of contents group
	revealtype: "click", //Reveal content when user clicks or onmouseover the header? Valid value: "click", "clickgo", or "mouseover"
	mouseoverdelay: 200, //if revealtype="mouseover", set delay in milliseconds before header expands onMouseover
	collapseprev: true, //Collapse previous content (so only one open at any time)? true/false
	defaultexpanded: [], //index of content(s) open by default [index1, index2, etc]. [] denotes no content
	onemustopen: false, //Specify whether at least one header should be open always (so never all headers closed)
	animatedefault: false, //Should contents open by default be animated into view?
	persiststate: true, //persist state of opened contents within browser session?
	toggleclass: ["", "openheader"], //Two CSS classes to be applied to the header when it's collapsed and expanded, respectively ["class1", "class2"]
	togglehtml: ["prefix", "", ""], //Additional HTML added to the header when it's collapsed and expanded, respectively  ["position", "html1", "html2"] (see docs)
	animatespeed: "fast", //speed of animation: integer in milliseconds (ie: 200), or keywords "fast", "normal", or "slow"
	oninit:function(headers, expandedindices){ //custom code to run when headers have initalized
		//do nothing
	},
	onopenclose:function(header, index, state, isuseractivated){ //custom code to run whenever a header is opened or closed
		//do nothing
	}
})

ddaccordion.init({ //2nd level headers initialization
	headerclass: "subexpandable", //Shared CSS class name of sub headers group that are expandable
	contentclass: "subcategoryitems", //Shared CSS class name of sub contents group
	revealtype: "click", //Reveal content when user clicks or onmouseover the header? Valid value: "click" or "mouseover
	mouseoverdelay: 200, //if revealtype="mouseover", set delay in milliseconds before header expands onMouseover
	collapseprev: true, //Collapse previous content (so only one open at any time)? true/false
	defaultexpanded: [], //index of content(s) open by default [index1, index2, etc]. [] denotes no content
	onemustopen: false, //Specify whether at least one header should be open always (so never all headers closed)
	animatedefault: false, //Should contents open by default be animated into view?
	persiststate: true, //persist state of opened contents within browser session?
	toggleclass: ["opensubheader", "closedsubheader"], //Two CSS classes to be applied to the header when it's collapsed and expanded, respectively ["class1", "class2"]
	togglehtml: ["none", "", ""], //Additional HTML added to the header when it's collapsed and expanded, respectively  ["position", "html1", "html2"] (see docs)
	animatespeed: "fast", //speed of animation: integer in milliseconds (ie: 200), or keywords "fast", "normal", or "slow"
	oninit:function(headers, expandedindices){ //custom code to run when headers have initalized
		//do nothing
	},
	onopenclose:function(header, index, state, isuseractivated){ //custom code to run whenever a header is opened or closed
		//do nothing
	}
})


/*--------------END INITIALIZE LEFT ACCORDION NAVIGATION -----/*/
