function showDiv(id) {
    $("#"+id).css('display', ($("#"+id).css('display')=='none'?'inline':'none'));
    //document.getElementById(id).style.display = (document.getElementById(id).style.display == 'none') ? 'inline' : 'none';
}
function gotoLink(href, target) {
    if (!target) { target = "self"; }
    switch (target) {
        case "self": window.location = href; break;
        case "new": window.open(href);
    }
}
function isValidUrl(s) {
	var regexp = /(ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?/
	return regexp.test(s);
}
function validateEmailAddress(str){      
   var emailPattern = /^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$/;
   return emailPattern.test(str); 
}
function setPadding(id) { if ($('.contentCell').length==0) { $('#'+id).addClass('contentCell'); } }
$(document).ready(function() { if ($('.activeMenu').length==0) { $('#'+dvmID).addClass('paddingMain'); } });
