
$(pageSetup);
function pageSetup() {
var isPostpin = false;
if(document.nav_form.logintype.value != 'public') {
isPostpin = true;
}
isExecMember(isPostpin);
}
function isExecMember(isPostpin) {
if (isPostpin == true){
$(".NonExecutiveMemberText").hide();
$("#NonExecutiveMemberPara").hide();
$("#ExecutiveMemberPara").show();
}
else {
$(".NonExecutiveMemberText").show();
$("#NonExecutiveMemberPara").show();
$("#ExecutiveMemberPara").hide();
}
}

