CINXE.COM
Chem R&D 2025 | Chemistry Research and Development Conference | Chemistry Conference
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.4/jquery.min.js'></script> <script> $(document).ready(function() { var Participants; var registration_price; var registration_category; var Final_Reg_price = 0; var socialnetwork = 0; var No_of_Socialnetworking = 0; var No_of_accompanying = 0; var accompanying_price = 0; var accommodation_price = 0; var accommodation_category = ""; var No_of_days = 0; var total_price = 0; var discount_code = ""; var discount_applied = false; var discount_reg_price = 0; var discount_acc_price = 0; var discount_price = 0; var Live; var before_discount_total = 0; var discountedPrice = 0; var discount_category = ""; var check_in_date = ""; var check_out_date = ""; var Sponsor_price = 0; var Sponsor_category; var Sponsor_others; var Sponsor_disount = 0; var Sponsor_disount_code; var Sponsor_disount_applied = false; var Sponsor_disounted_price; var sponsorship_price; var form_reg_radio = $("input[id='reg_radio']").map(function() { return $(this).attr('name'); }).get(); var reg_radio_value = 'r2'; $("input[name='" + reg_radio_value + "']").prop("disabled", false); $("input[type='radio']").each(function() { var name = $(this).attr("name"); if (!reg_radio_value.includes(name)) { (reg_radio_value); $(this).prop("disabled", true); $("input[name='r5']").prop("disabled", false); } }); if (form_reg_radio.includes(reg_radio_value)) { $("input[name='" + form_reg_radio + "']").prop("disabled", true); } $("input[name='reg_check'][value='live']").prop("checked", true); $("input[name='reg_check'][value='not live']").prop("disabled", true); Live = $("input[name='reg_check'][value='live']").val(); check_box(); // $("#socialnetwork").val("0"); if (Participants != 0) { Participants = $("#participants_id").val(); getReg_price(); } if (No_of_Socialnetworking != 0) { No_of_Socialnetworking = $("#socialnetwork").val(); getSocial_networking_price(); } if (accompanying_price != 0) { accompanying_price = $("#accompanying").val(); get_accompanying_value(); } total(); $("input[name='reg_check'][value='live']").change(function() { check_box(); }); $('#participants_id').change(function() { getParticipants_value(); }); $('input[type=radio][name="r2"]').change(function() { getReg_price(); }); $('#socialnetwork').change(function() { getSocial_networking_price(); }); $('#accompanying').change(function() { get_accompanying_value(); }); $('input[type=radio][name=r5]').change(function() { get_accommodation_value(); }); $('#numberof_days').change(function() { number_of_days(); checkincheckout(); }); $('#amount').change(function() { Sponsor_price = $("#amount").val(); if (Sponsor_others) { Sponsor_price = $("#amount").val(); if ((Sponsor_price != "") && (Sponsor_disount_applied)) { spn_discount(); } } }); $('#discountregistration').change(function() { if (this.checked) { $('#display_discountinput').css("display", "block"); } else { $('#display_discountinput').css("display", "none"); } }); $('#form-check input[type="checkbox"]').change(function() { $('#collapseExample').toggle(this.checked); }); $('#extra_accommodation').change(function() { if (this.checked) { $('#acd_extrabox').css("display", "block"); } else { $('#acd_extrabox').css("display", "none"); } if ($('#extra_accommodation').prop('checked')) { number_of_days(); } }); $("#dateof_accommodation").on("change", function() { checkincheckout(); }); $("#spn_discount_code").change(function() { Sponsor_disount_code = $("#spn_discount_code").val(); if (Sponsor_disount_code != "") { Sponsor_disount_applied = true; spn_discount(); } }) function check_box() { if ($("input[name='reg_check'][value='live']").prop("checked")) { $.ajax({ type: "POST", url: "env_dev.php", data: { live: Live, }, success: function(result) { if (result == "Success") { $("input[name='r2']:first").prop("checked", true).trigger("click"); } getReg_price(); } }); } else { $("input[name='r2']").prop("checked", false); registration_price = 0; total(); if (discount_applied == true) { discount(); } } } function getParticipants_value() { Participants = $("#participants_id").val(); total(); if (discount_applied == true) { discount(); } } function getReg_price() { registration_category = $('input[type=radio][name="r2"]:checked').attr("data-value"); $.ajax({ type: "POST", url: "env_dev.php", data: { category: registration_category, }, success: function(result) { registration_price = result; total(); if (discount_applied == true) { discount(); } } }); } function getSocial_networking_price() { No_of_Socialnetworking = $('#socialnetwork').val(); $.ajax({ type: "POST", url: "env_dev.php", data: { numberof_persons_socialnetwork: No_of_Socialnetworking, }, success: function(response) { socialnetwork = response; total(); if (discount_applied == true) { discount(); } } }); } function get_accompanying_value() { No_of_accompanying = $('#accompanying').val(); $.ajax({ type: "POST", url: "env_dev.php", data: { noof_accompanying: No_of_accompanying, }, success: function(response) { accompanying_price = response; total(); if (discount_applied == true) { discount(); } } }); } function get_accommodation_value() { accommodation_category = $('input[type=radio][name=r5]:checked').attr("data-value"); if ((accommodation_category == "Single Occupancy") || (accommodation_category == "Double Occupancy")) { $("#acd_extrabox").css("display", "block"); number_of_days(); } else { window.location.href = "index.php"; $("#acd_extrabox").css("display", "none"); total(); } } function number_of_days() { if ($('input[name=r5]').is(':checked')) { var number_of_days = parseInt($('#numberof_days :selected').text()); No_of_days = (isNaN(number_of_days)) ? 0 : number_of_days; $('.show_check_in_and_check_out_div').css("display", "block"); if (No_of_days < 2) { $('.datesecond').css("display", "none"); } else { $('.datesecond').css("display", "block"); } } else { $(".show_check_in_and_check_out_div").css("display", "none"); No_of_days = 0; total(); } $.ajax({ type: "POST", url: "env_dev.php", data: { Accommodation_type: accommodation_category, numberofdays: No_of_days }, success: function(result) { accommodation_price = result; total(); if (discount_applied == true) { discount(); } } }); } function checkincheckout() { // Define the toInputFormat function before calling it Date.prototype.toInputFormat = function() { var yyyy = this.getFullYear().toString(); var mm = (this.getMonth() + 1).toString(); // getMonth() is zero-based var dd = this.getDate().toString(); var weekday = new Array(7); weekday[0] = "Sunday"; weekday[1] = "Monday"; weekday[2] = "Tuesday"; weekday[3] = "Wednesday"; weekday[4] = "Thursday"; weekday[5] = "Friday"; weekday[6] = "Saturday"; var n = weekday[this.getDay()]; var checkoutdayname = (mm[1] ? mm : "0" + mm[0]) + "-" + (dd[1] ? dd : "0" + dd[0]) + "-" + yyyy; $("#checkoutdate").attr('data', checkoutdayname); $("#showcheckin").html(checkin_date); $("#showcheckout").html(checkoutdayname); check_out_date = checkoutdayname; total(); if (discount_applied == true) { discount(); } return (mm[1] ? mm : "0" + mm[0]) + "-" + (dd[1] ? dd : "0" + dd[0]) + "-" + yyyy; }; var checkin_date = $("#dateof_accommodation :selected").val(); check_in_date = checkin_date; if ((checkin_date == '')) { alert("Please select starting date of accommodation"); check_in_date = ""; check_out_date = ""; } else if (No_of_days == '') { alert("Please select No of nights"); $("#dateof_accommodation").val("0"); $("#numberof_days").focus(); check_in_date = ""; check_out_date = ""; $("#show_check_in_check_out").hide(); $("#checkoutdate").val("check out date"); } else { if (checkin_date != "0") { var clientDate = new Date(checkin_date); var utc = clientDate.toUTCString(); var date = new Date(utc); var days = parseInt(No_of_days, 10); if (!isNaN(date.getTime())) { date.setDate(date.getDate() + 0 + days); check_out_date = date.toInputFormat() $("#show_check_in_check_out").show(); // $("#checkoutdate").val(check_out_date); } else { alert("Invalid Date"); } } else { check_out_date = ""; check_in_date = ""; $("#show_check_in_check_out").hide(); $("#checkoutdate").val("check out date"); } } total(); } $(".discountcheck").click(function(e) { e.preventDefault(); discount_code = $("#discount_code").val(); if (discount_code == '') { alert("Please Enter Discount Code"); } else if (discount_applied == true) { alert("Discount Code Already Applied"); } else { discount(); } }); function discount() { discount_code = $("#discount_code").val(); var ajaxurl = "payment.php"; var dataString = 'reg_price=' + Final_Reg_price + '&accommodation_price=' + accommodation_price + '&total_price=' + total_price + '&discount_code=' + discount_code + '&accompanying_totalprice=' + accompanying_price + '&socialnetwork_price=' + socialnetwork; $.ajax({ url: ajaxurl, type: "POST", data: dataString, success: function(data) { var jsonData = JSON.parse(data); if (typeof jsonData === "object") { // Update the HTML content in the appropriate element $('#jsonpResult').html(jsonData.html); $("#showdiscountcode").html(discount_code); discount_category = jsonData.discount_category; if (jsonData.discount_category == "registration") { $(".reg_discountsec").css("display", "block"); $(".discountsec").css("display", "block"); $("#registrationdiscount").html(jsonData.discountedPrice); discountedPrice = jsonData.discountedPrice; discount_reg_price = jsonData.discount_price; discount_price = jsonData.discount_price; $("#showdiscount_price").html(jsonData.discountedPrice); } else if (jsonData.discount_category == "accommodation") { $(".acc_discountsec").css("display", "block"); $(".discountsec").css("display", "block"); discountedPrice = jsonData.discountedPrice; discount_acc_price = jsonData.discount_price; discount_price = jsonData.discount_price; $("#showdiscount_price").html(jsonData.discountedPrice); $("#accommodationdiscount").html(jsonData.discountedPrice); } else { $(".acc_discountsec").css("display", "block"); $(".reg_discountsec").css("display", "block"); $(".discountsec").css("display", "block"); discountedPrice = jsonData.discountedPrice; discount_acc_price = jsonData.acc_discount_price; discount_reg_price = jsonData.reg_discount_price; discount_price = jsonData.discount_price; $("#showdiscount_price").html(jsonData.discountedPrice); $("#registrationdiscount").html(jsonData.reg_discountedPrice); $("#accommodationdiscount").html(jsonData.acc_discountedPrice); } if (jsonData.html != "<h2>The code entered is not valid. Please enter a valid code.</h2>") { discount_applied = true; } else { $(".acc_discountsec").css("display", "none"); $(".reg_discountsec").css("display", "none"); $(".discountsec").css("display", "none"); } total_price = jsonData.final_price; total(); } else { console.log("No HTML data received or HTML data is empty."); total(); } return false; } }); } function spn_discount() { var ajaxurl = "sponsor_discount.php"; Sponsor_price = $("#amount").val(); var dataString = 'amount=' + Sponsor_price + '&discount_code=' + Sponsor_disount_code; $.ajax({ url: ajaxurl, type: "POST", data: dataString, success: function(data) { var jsonData = JSON.parse(data); if (typeof jsonData === "object") { // Update the HTML content in the appropriate element $('#jsonpResult').html(jsonData.html); $("#amount").val(jsonData.final_price); Sponsor_disounted_price = jsonData.discountedPrice; // $("#showdiscountcode").html(discount_code); if (jsonData.html != "<h2>The code entered is not valid. Please enter a valid code.</h2>") {} total(); } else { console.log("No HTML data received or HTML data is empty."); total(); } return false; } }); } $('select[name=session]').change(function() { Sponsor_category = $(this).val(); $.ajax({ url: 'env_dev.php', type: 'POST', data: { Sponsor_category: Sponsor_category, }, success: function(response) { Sponsor_price = response; if (response == "others") { $("#amount").val(''); $('#amount').prop('readonly', false); Sponsor_others = true; if ((Sponsor_disount_applied == true) && (Sponsor_others)) { $('#jsonpResult').html(""); alert("Please enter amount"); spn_discount(); } } else { $("#amount").val(Sponsor_price); $('#amount').prop('readonly', true); if (Sponsor_disount_applied == true) { spn_discount(); } } }, error: function(xhr, status, error) { console.error("error = ", error); // Handle error response if needed } }); }); function total() { if ((Participants !== "") && (registration_price !== "") && (registration_category !== "") && (No_of_Socialnetworking !== "") && (socialnetwork !== "")) { Final_Reg_price = parseInt((Participants * registration_price)); if (discount_applied == false) { total_price = parseInt(Final_Reg_price) + parseInt(socialnetwork) + parseInt(accompanying_price) + parseInt(accommodation_price); } before_discount_total = parseInt(Final_Reg_price) + parseInt(socialnetwork) + parseInt(accompanying_price) + parseInt(accommodation_price); } $("#show_registration_price").html(Final_Reg_price); $("#shownumberof_participants").html(Participants); $("#showgsocialnetworking_price").html(socialnetwork); $("#show_accompanying_price").html(accompanying_price); $("#showselected_numberofdays").html(No_of_days); $("#showaccommodation_price").html(accommodation_price); $("#showtotalprice").html(total_price); $("#displayprice").html(total_price); $("#showcheckin").html(check_in_date); $("#showcheckout").html(check_out_date); $("#checkoutdate").val(check_out_date); if (discount_code != "") { $("#show_discounts_code").show(); } else { $("#show_discounts_code").hide(); } } $("#reg_form").submit(function(e) { e.preventDefault(); // Prevent the form from submitting normally if ((accommodation_category != "") && (check_in_date == "") && (check_out_date == "")) { $("#dateof_accommodation").focus().css("border-color", "red"); alert("Please select No of Days and starting date of accommodation"); } else { var formDataArray = $(this).serializeArray(); // Additional values in JavaScript var additionalData = { reg_type: "Standard Registration", participants: Participants, before_discount_reg_price: Final_Reg_price, registration_category: registration_category, before_discount_acc_price: accommodation_price, accommodation_category: accommodation_category, No_of_acc_days: No_of_days, showcheckin_date: check_in_date, showcheckout_date: check_out_date, total_price: total_price, socialnetwork_price: socialnetwork, no_of_socialnetworking: No_of_Socialnetworking, accompanying_priceonly: accompanying_price, noof_accompanying: No_of_accompanying, discount_registrationprice: discount_reg_price, discount_accom: discount_acc_price, discount_price: discount_price, discount_code: discount_code, before_discount_total: before_discount_total, discountedPrice: discountedPrice, discount_category: discount_category, }; // Merge form data and additional data var postData = formDataArray.concat($.map(additionalData, function(value, key) { return { name: key, value: value }; })); // AJAX request $.ajax({ url: 'register_payment.php', type: 'POST', data: { data: postData }, success: function(response) { window.location.href = 'register_payment.php'; // var datasuccessturn = $(response).find('#successturn').text(); // if (datasuccessturn == 1) { // window.location.href = 'register_payment.php'; // } else { // alert("Please try again after some time"); // } }, error: function(xhr, status, error) { console.error("error = ", error); // Handle error response if needed } }); } }); $("#sponsor_form").submit(function(e) { e.preventDefault(); var isValid = true; // Iterate over the form elements $(this).find(":input[required]").each(function() { if ($(this).val().trim() === "") { isValid = false; // Optionally, you can highlight the invalid field or display an error message $(this).addClass("error"); // Add a CSS class for styling } else { $(this).removeClass("error"); } }); if (isValid) { var formData = new FormData(this); // Create FormData object formData.append("spn_discount_code", Sponsor_disount_code); formData.append("spn_discounted_price", Sponsor_disounted_price); formData.append("sponsorship_price", Sponsor_price); var url = 'sponsor_payment.php'; // URL to submit the form data $.ajax({ type: 'POST', url: url, data: formData, processData: false, contentType: false, success: function(response) { window.location.href = 'sponsor_payment.php'; }, error: function(xhr, status, error) {} }); } else { // Display an error message or perform other actions to indicate invalid fields alert('Please fill all required fields.'); } }); $("#reg_subscribe").submit(function(e) { e.preventDefault(); var isValid = true; // Iterate over the form elements $(this).find(":input[required]").each(function() { if ($(this).val().trim() === "") { isValid = false; // Optionally, you can highlight the invalid field or display an error message $(this).addClass("error"); // Add a CSS class for styling } else { $(this).removeClass("error"); } }); if (isValid) { // var formData = new FormData(this); // Create FormData object var formDataArray = $(this).serialize(); // formData.append("spn_discount_code", Sponsor_disount_code); // formData.append("spn_discounted_price", Sponsor_disounted_price); var url = 'subscribe_payment.php'; // URL to submit the form data $.ajax({ type: 'POST', url: 'subscribe_payment.php', data: formDataArray, success: function(response) { window.location.href = 'subscribe_payment.php'; }, error: function(xhr, status, error) {} }); } else { // Display an error message or perform other actions to indicate invalid fields alert('Please fill all required fields.'); } }); }); </script><!DOCTYPE html> <html lang="en"> <head> <!-- New Event http://www.templatemo.com/tm-486-new-event --> <title>Chem R&D 2025 | Chemistry Research and Development Conference | Chemistry Conference</title> <meta name="keywords" content="Chemistry conference, advanced chemistry conference, chemistry research conference, Chemistry research and development conference, chemistry meeting usa, chemistry conference boston, chemistry conference speakers, chemistry conference exhibition." /> <meta name="description" content="To register for this conference, kindly fill out the CHEM R&D 2025 online registration form by following its instructions." /> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <link rel="shortcut icon" href="images/favicon.png" type="image/x-icon"> <link rel="stylesheet" href="css/animate.css"> <link rel="stylesheet" href="css/font-awesome.min.css"> <link rel="stylesheet" href="css/owl.theme.css"> <link rel="stylesheet" href="css/owl.carousel.css"> <!-- Main css --> <link rel="stylesheet" href="css/style.css"> <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet"> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous"> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script> <!-- Google Font --> <link href='https://fonts.googleapis.com/css?family=Poppins:400,500,600' rel='stylesheet' type='text/css'> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-ZQC5Q7141Y"></script> <script> window.dataLayer = window.dataLayer || []; function gtag() { dataLayer.push(arguments); } gtag('js', new Date()); gtag('config', 'G-ZQC5Q7141Y'); </script> </head> <body data-spy="scroll" data-offset="50" data-target=".navbar-collapse"> <!-- ========================= PRE LOADER ============================== --> <!-- <div class="preloader"> <div class="sk-rotating-plane"></div> </div> --> <nav class="navbar navbar-expand-lg custom-navbar fixed-top bg-dark"> <div class="container"> <a class="navbar-brand" href="./"> <!-- CHEM R&D --> <img src="images/logo.png" alt="CHEM R&D 2025"> </a> <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button> <a href="https://en.wikipedia.org/wiki/History_of_chemistry" class="text-primary w-100 text-center" target="_blank"><b>History of Chemistry</b></a> <div class="collapse navbar-collapse" id="navbarSupportedContent"> <ul class="navbar-nav me-auto mb-2 mb-lg-0"> <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false"> About </a> <ul class="dropdown-menu"> <li><a class="dropdown-item" href="about">Conference Info</a></li> <li><a class="dropdown-item" href="visa-information">Visa Information</a></li> </ul> </li> <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false"> Experts </a> <ul class="dropdown-menu"> <li><a class="dropdown-item" href="experts">Committee</a></li> <li><a class="dropdown-item" href="speakers">Speakers</a></li> </ul> </li> <li class="nav-item"> <a class="nav-link" href="important-dates">Dates</a> </li> <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false"> Abstract </a> <ul class="dropdown-menu"> <li><a class="dropdown-item" href="abstract_submission">ABSTRACT SUBMISSION</a></li> <li><a class="dropdown-item" href="scientific_topics">SCIENTIFIC TOPICS</a></li> <li><a class="dropdown-item" href="review-process">REVIEW PROCESS</a></li> <li><a class="dropdown-item" href="guidelines">GUIDELINES</a></li> <!-- <li><a class="dropdown-item" href="poster-guidelines">POSTER GUIDELINES</a></li> --> </ul> </li> <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false"> Sponsors </a> <ul class="dropdown-menu"> <li><a class="dropdown-item" href="become_a_sponsor">BECOME A SPONSOR</a></li> <li><a class="dropdown-item" href="exhibition">EXHIBITION</a></li> </ul> </li> <li class="nav-item"> <a class="nav-link" href="venue-and-hospitality">Venue</a> </li> <li class="nav-item align-self-center"> <a class="btn btn-danger px-4 mx-4" href="registration_form">Register</a> </li> </ul> </div> </div> </nav> <div class="col-sm-12 py-2 text-center text-white fw-bold header-dates" style="position: absolute; top: 70px; background-color: #0089ff;"> <div class="container"> <div class="row"> <div class="col-sm-6 pt-2"><a href="abstract_submission" class="text-white"><i class="fa fa-file-o"></i> <span style="color: #000; ">Second Round of Abstract Submission Ends:</span> December 16, 2024</a></div> <div class="col-sm-6 pt-2"><a href="registration_form" class="text-white"><i class="fa fa-ticket"></i> <span style="color: #000; ">Early Bird Registration Extended up to: </span>November 30, 2024</a> </div> </div> </div> </div> <div class="breadcumb-area mt-7"> <div class="container"> <div class="row"> <div class="breadcumb-content mt-5"> <h1>Registration</h1> <ul> <li><a href="./">Home</a></li> <li><i class="fa fa-angle-right"></i></li> <li>Registration</li> </ul> </div> </div> </div> </div> <style> .extra-nights-box { background: #19546b; color: #fff; padding: 10px; width: 320px; margin: 10px 0px 25px; } .summery-invisible { padding: 10px 20px 5px; } hr.style-one { border: 0; height: 1px; background: #333; background-image: linear-gradient(to right, #ccc, #333, #ccc); } .White { color: #ef2; font-weight: bold; } .panel-body label { width: 100% !important; } body .fa { font: normal !important; font-style: normal; } .form-control { -webkit-appearance: auto; } </style> <link rel="stylesheet" href="css/bootstrap-reg.css"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <script src="https://code.jquery.com/jquery-3.3.1.js" type="text/javascript"></script> <br /><br /> <div class="content" style="background-image:url();background-repeat:no-repeat;background-position:top center;"> <div class="container"> <main class="col-md-12 col-xs-12"> <div class="row"> <div class="col-md-6"> <h2 class="heading-agileinfo" style="text-align:center;">Registration Form</h2> </div> <div class="col-md-3"></div> <div class="col-md-3" style="margin-bottom:25px;"><img src="images/logo-stripe.png" alt="Stripe" style="text-align:center; width:100%;" /></div> <span class="w3-line black"></span> <form class="form-horizontal" name="reg_form" id="reg_form" method="post"> <div class="form-group"> <label class="control-label col-sm-2" for="title">Title:</label> <div class="col-sm-10"> <div class="input-group"> <span class="input-group-addon"><i class="fa fa-asterisk"></i></span> <select class="form-control" name="title" style="width:auto;"> <option value="Dr.">Dr.</option> <option value="Mr.">Mr.</option> <option value="Mrs.">Mrs.</option> <option value="Ms.">Ms.</option> </select> </div> </div> </div> <div class="form-group"> <label class="control-label col-sm-2" for="name">Name:</label> <div class="col-sm-10"> <div class="input-group"> <span class="input-group-addon"><i class="fa fa-user"></i></span> <input type="text" class="form-control" id="Name" placeholder="Enter your name" name="name" required="required"> </div> </div> </div> <div class="form-group"> <label class="control-label col-sm-2" for="email">Email:</label> <div class="col-sm-10"> <div class="input-group"> <span class="input-group-addon"><i class="fa fa-envelope"></i></span> <input type="email" class="form-control" id="email" placeholder="Enter your email" name="email" required="required"> </div> </div> </div> <div class="form-group"> <label class="control-label col-sm-2" for="organization">Organization:</label> <div class="col-sm-10"> <div class="input-group"> <span class="input-group-addon"><i class="fa fa-briefcase"></i></span> <input type="text" class="form-control" id="Organization" placeholder="Organization/Institution" name="organization" required="required"> </div> </div> </div> <div class="form-group"> <label class="control-label col-sm-2" for="phone">Telephone:</label> <div class="col-sm-10"> <div class="input-group"> <span class="input-group-addon"><i class="fa fa-phone-square"></i></span> <input type="tel" class="form-control" id="Telephone" placeholder="Enter your phone number" name="phone" required="required"> </div> </div> </div> <div class="form-group"> <label class="control-label col-sm-2" for="city">City:</label> <div class="col-sm-10"> <div class="input-group"> <span class="input-group-addon"><i class="fa fa-home"></i></span> <input type="text" class="form-control" id="City" placeholder="Enter your city name" name="city" required="required"> </div> </div> </div> <div class="form-group"> <label class="control-label col-sm-2" for="country">Country:</label> <div class="col-sm-10"> <div class="input-group"> <span class="input-group-addon"><i class="fa fa-map-marker"></i></span> <select class="form-control" name="country" data-country="US" style="width:auto;"> <option value="Select Any" selected="selected">Select country</option> <option value="United States">United States</option> <option value="United Kingdom">United Kingdom</option> <option value="Afghanistan">Afghanistan</option> <option value="Albania">Albania</option> <option value="Algeria">Algeria</option> <option value="American Samoa">American Samoa</option> <option value="Andorra">Andorra</option> <option value="Angola">Angola</option> <option value="Anguilla">Anguilla</option> <option value="Antarctica">Antarctica</option> <option value="Antigua and Barbuda">Antigua and Barbuda</option> <option value="Argentina">Argentina</option> <option value="Armenia">Armenia</option> <option value="Aruba">Aruba</option> <option value="Australia">Australia</option> <option value="Austria">Austria</option> <option value="Azerbaijan">Azerbaijan</option> <option value="Bahamas">Bahamas</option> <option value="Bahrain">Bahrain</option> <option value="Bangladesh">Bangladesh</option> <option value="Barbados">Barbados</option> <option value="Belarus">Belarus</option> <option value="Belgium">Belgium</option> <option value="Belize">Belize</option> <option value="Benin">Benin</option> <option value="Bermuda">Bermuda</option> <option value="Bhutan">Bhutan</option> <option value="Bolivia">Bolivia</option> <option value="Bosnia and Herzegovina">Bosnia and Herzegovina</option> <option value="Botswana">Botswana</option> <option value="Bouvet Island">Bouvet Island</option> <option value="Brazil">Brazil</option> <option value="British Indian Ocean Territory">British Indian Ocean Territory</option> <option value="Brunei Darussalam">Brunei Darussalam</option> <option value="Bulgaria">Bulgaria</option> <option value="Burkina Faso">Burkina Faso</option> <option value="Burundi">Burundi</option> <option value="Cambodia">Cambodia</option> <option value="Cameroon">Cameroon</option> <option value="Canada">Canada</option> <option value="Canadian Nunavut Territory">Canadian Nunavut Territory</option> <option value="Cape Verde">Cape Verde</option> <option value="Cayman Islands">Cayman Islands</option> <option value="Central African Republic">Central African Republic</option> <option value="Chad">Chad</option> <option value="Chile">Chile</option> <option value="China">China</option> <option value="Christmas Island">Christmas Island</option> <option value="Cocos (Keeling Islands)">Cocos (Keeling Islands)</option> <option value="Colombia">Colombia</option> <option value="Comoros">Comoros</option> <option value="Congo">Congo</option> <option value="Cook Islands">Cook Islands</option> <option value="Costa Rica">Costa Rica</option> <option value="Cote D'Ivoire (Ivory Coast)">Cote D'Ivoire (Ivory Coast)</option> <option value="Croatia (Hrvatska)">Croatia (Hrvatska)</option> <option value="Cuba">Cuba</option> <option value="Cyprus">Cyprus</option> <option value="Czech Republic">Czech Republic</option> <option value="Denmark">Denmark</option> <option value="Djibouti">Djibouti</option> <option value="Dominica">Dominica</option> <option value="Dominican Republic">Dominican Republic</option> <option value="East Timor">East Timor</option> <option value="Ecuador">Ecuador</option> <option value="Egypt">Egypt</option> <option value="El Salvador">El Salvador</option> <option value="Equatorial Guinea">Equatorial Guinea</option> <option value="Eritrea">Eritrea</option> <option value="Estonia">Estonia</option> <option value="Ethiopia">Ethiopia</option> <option value="Falkland Islands (Malvinas)">Falkland Islands (Malvinas)</option> <option value="Faroe Islands">Faroe Islands</option> <option value="Fiji">Fiji</option> <option value="Finland">Finland</option> <option value="France">France</option> <option value="France, Metropolitan">France, Metropolitan</option> <option value="French Guiana">French Guiana</option> <option value="French Polynesia">French Polynesia</option> <option value="French Southern Territories">French Southern Territories</option> <option value="Gabon">Gabon</option> <option value="Gambia">Gambia</option> <option value="Georgia">Georgia</option> <option value="Germany">Germany</option> <option value="Ghana">Ghana</option> <option value="Gibraltar">Gibraltar</option> <option value="Greece">Greece</option> <option value="Greenland">Greenland</option> <option value="Grenada">Grenada</option> <option value="Guadeloupe">Guadeloupe</option> <option value="Guam">Guam</option> <option value="Guatemala">Guatemala</option> <option value="Guinea">Guinea</option> <option value="Guinea-Bissau">Guinea-Bissau</option> <option value="Guyana">Guyana</option> <option value="Haiti">Haiti</option> <option value="Heard and McDonald Islands">Heard and McDonald Islands</option> <option value="Honduras">Honduras</option> <option value="Hong Kong">Hong Kong</option> <option value="Hungary">Hungary</option> <option value="Iceland">Iceland</option> <option value="India">India</option> <option value="Indonesia">Indonesia</option> <option value="Iran">Iran</option> <option value="Iraq">Iraq</option> <option value="Ireland">Ireland</option> <option value="Israel">Israel</option> <option value="Italy">Italy</option> <option value="Jamaica">Jamaica</option> <option value="Japan">Japan</option> <option value="Jordan">Jordan</option> <option value="Kazakhstan">Kazakhstan</option> <option value="Kenya">Kenya</option> <option value="Kiribati">Kiribati</option> <option value="Korea (North)">Korea (North)</option> <option value="Korea (South)">Korea (South)</option> <option value="Kuwait">Kuwait</option> <option value="Kyrgyzstan">Kyrgyzstan</option> <option value="Laos">Laos</option> <option value="Latvia">Latvia</option> <option value="Lebanon">Lebanon</option> <option value="Lesotho">Lesotho</option> <option value="Liberia">Liberia</option> <option value="Libya">Libya</option> <option value="Liechtenstein">Liechtenstein</option> <option value="Lithuania">Lithuania</option> <option value="Luxembourg">Luxembourg</option> <option value="Macau">Macau</option> <option value="Macedonia">Macedonia</option> <option value="Madagascar">Madagascar</option> <option value="Malawi">Malawi</option> <option value="Malaysia">Malaysia</option> <option value="Maldives">Maldives</option> <option value="Mali">Mali</option> <option value="Malta<">Malta</option> <option value="Marshall Islands">Marshall Islands</option> <option value="Martinique">Martinique</option> <option value="Mauritania">Mauritania</option> <option value="Mauritius">Mauritius</option> <option value="Mayotte">Mayotte</option> <option value="Mexico">Mexico</option> <option value="Micronesia">Micronesia</option> <option value="Moldova">Moldova</option> <option value="Monaco">Monaco</option> <option value="Mongolia">Mongolia</option> <option value="Montserrat">Montserrat</option> <option value="Morocco">Morocco</option> <option value="Mozambique">Mozambique</option> <option value="Myanmar">Myanmar</option> <option value="Namibia">Namibia</option> <option value="Nauru">Nauru</option> <option value="Nepal">Nepal</option> <option value="Netherlands">Netherlands</option> <option value="Netherlands Antilles">Netherlands Antilles</option> <option value="New Caledonia">New Caledonia</option> <option value="New Zealand">New Zealand</option> <option value="Nicaragua">Nicaragua</option> <option value="Niger">Niger</option> <option value="Nigeria">Nigeria</option> <option value="Niue">Niue</option> <option value="Norfolk Island">Norfolk Island</option> <option value="Northern Mariana Islands">Northern Mariana Islands</option> <option value="Norway">Norway</option> <option value="Oman">Oman</option> <option value="Pakistan">Pakistan</option> <option value="Palau">Palau</option> <option value="Panama">Panama</option> <option value="Papua New Guinea">Papua New Guinea</option> <option value="Paraguay">Paraguay</option> <option value="Peru">Peru</option> <option value="Philippines">Philippines</option> <option value="Pitcairn">Pitcairn</option> <option value="Poland">Poland</option> <option value="Portugal">Portugal</option> <option value="Qatar">Qatar</option> <option value="Reunion">Reunion</option> <option value="Romania">Romania</option> <option value="Russian Federation">Russian Federation</option> <option value="Rwanda">Rwanda</option> <option value="S. Georgia and S. Sandwich Isls.">S. Georgia and S. Sandwich Isls.</option> <option value="Saint Kitts and Nevis">Saint Kitts and Nevis</option> <option value="Saint Lucia">Saint Lucia</option> <option value="Saint Vincent and The Grenadines">Saint Vincent and The Grenadines</option> <option value="Samoa">Samoa</option> <option value="San Marino">San Marino</option> <option value="Sao Tome and Principe">Sao Tome and Principe</option> <option value="Saudi Arabia">Saudi Arabia</option> <option value="Senegal">Senegal</option> <option value="Seychelles">Seychelles</option> <option value="Sierra Leone">Sierra Leone</option> <option value="Singapore">Singapore</option> <option value="Slovak Republic">Slovak Republic</option> <option value="Slovenia">Slovenia</option> <option value="Solomon Islands">Solomon Islands</option> <option value="Somalia">Somalia</option> <option value="South Africa">South Africa</option> <option value="Spain">Spain</option> <option value="Sri Lanka">Sri Lanka</option> <option value="St. Helena">St. Helena</option> <option value="St. Pierre and Miquelon">St. Pierre and Miquelon</option> <option value="Sudan">Sudan</option> <option value="Suriname">Suriname</option> <option value="Svalbard and Jan Mayen Islands">Svalbard and Jan Mayen Islands</option> <option value="Swaziland">Swaziland</option> <option value="Sweden">Sweden</option> <option value="Switzerland">Switzerland</option> <option value="Syria">Syria</option> <option value="Taiwan">Taiwan</option> <option value="Tajikistan">Tajikistan</option> <option value="Tanzania">Tanzania</option> <option value="Thailand">Thailand</option> <option value="Togo">Togo</option> <option value="Tokelau">Tokelau</option> <option value="Tonga">Tonga</option> <option value="Trinidad and Tobago">Trinidad and Tobago</option> <option value="Tunisia">Tunisia</option> <option value="Turkey">Turkey</option> <option value="Turkmenistan">Turkmenistan</option> <option value="Turks and Caicos Islands">Turks and Caicos Islands</option> <option value="Tuvalu">Tuvalu</option> <option value="US Minor Outlying Islands">US Minor Outlying Islands</option> <option value="Uganda">Uganda</option> <option value="Ukraine">Ukraine</option> <option value="United Arab Emirates">United Arab Emirates</option> <option value="United Kingdom">United Kingdom</option> <option value="United States">United States</option> <option value="Uruguay">Uruguay</option> <option value="Uzbekistan">Uzbekistan</option> <option value="Vanuatu">Vanuatu</option> <option value="Vatican City State (Holy See)">Vatican City State (Holy See)</option> <option value="Venezuela">Venezuela</option> <option value="Viet Nam">Viet Nam</option> <option value="Virgin Islands (British)">Virgin Islands (British)</option> <option value="Wallis and Futuna Islands">Wallis and Futuna Islands</option> <option value="Western Sahara">Western Sahara</option> <option value="Yemen">Yemen</option> <option value="Yugoslavia">Yugoslavia</option> <option value="Zaire">Zaire</option> <option value="Zambia">Zambia</option> <option value="Zimbabwe">Zimbabwe</option> </select> </div> </div> </div> <div class="form-group"> <label class="control-label col-sm-2" for="interest">Interested In:</label> <div class="col-sm-10"> <div class="input-group"> <span class="input-group-addon"><i class="fa fa-list"></i></span> <select class="form-control" name="interest" style="width:auto;"> <option value="Oral Presentation"> Oral Presentation </option> <option value="Poster Presentation"> Poster Presentation </option> <option value="Conducting Workshop"> Conducting Workshop </option> <option value="Conducting Symposium"> Conducting Symposium </option> <option value="Others"> Others </option> </select> </div> </div> </div> <div class="form-group" style="display:none;"> <label class="control-label col-sm-2" for="interest">Subject</label> <div class="col-sm-10"> <div class="input-group"> <span class="input-group-addon"><i class="fa fa-list"></i></span> <input type="text" class="form-control" id="subject" placeholder="Enter subject" name="subject"> </div> </div> </div> <div class="form-group"> <label class="control-label col-sm-2" for="address">Billing Address:</label> <div class="col-sm-10"> <div class="input-group"> <span class="input-group-addon"><i class="fa fa-globe"></i></span> <textarea class="form-control" name="address" rows="5" required="required"></textarea> </div> </div> </div> <div class="form-group" id="participants_block"> <label class="control-label col-sm-2" for="participants">Participants:</label> <div class="col-sm-10"> <div class="input-group"> <span class="input-group-addon"><i class="fa fa-plus"></i></span> <select class="form-control" name="participants" id="participants_id" style="width:auto;"> <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> <option value="4">4</option> <option value="5">5</option> <option value="6">6</option> <option value="7">7</option> <option value="8">8</option> <option value="9">9</option> <option value="10">10</option> </select> </div> </div> </div> <!-- <div class="form-group"> <div class="col-sm-10"> <div class="input-group"> <div id="name_scents" class="control-label col-sm-2 regDetails"></div> <div id="pn_input" class="form-control abformTitle"></div><br /><br /> <div id="name_organization" class="control-label col-sm-2 regDetails"></div> <div id="pn_organization" class="form-control abformTitle"></div> </div> </div> </div> --> <div class="form-group"> <div id="participantswithout_fields"> <div id="fields"></div> <div id="name_organization1" class="control-label col-sm-2 regDetails"></div> <div id="pn_organization1" class="col-sm-6 abformTitle"></div> </div> </div> <style> .nonBold { font-weight: normal; } .priceBox { border: 1px solid #ebccd1; padding: 5px 8px; float: right; color: #a94442; background: #fff; } </style> <div class="form-group"> <div class="col-sm-3" style="opacity: 0.3;"> <div class="panel panel-primary"> <div class="panel-heading"> <s> <h5 class="text-center text-white" style="font-size:18.5px;">Pre Early Bird<br /><small style="color:#fff;">August 31, 2024</small></h5> <input type="checkbox" class="form-control card-checkbox" name="reg_check" id="reg_check" value="not live" /> </s> </div> <div class="panel-body"> <div class="form-group"> <label class="control-label col-sm-12" style="text-align:left;"><input type="radio" name="r1" id="reg_radio" data-value="Academic & Federal"> <span class="nonBold" style="display:inline-flex;">Academic &<br /> Federal</span> <span class="priceBox">$ 699</span></label> </div> <div class="form-group"> <label class="control-label col-sm-12" style="text-align:left;"><input type="radio" name="r1" id="reg_radio" data-value="Industry"> <span class="nonBold">Industry</span> <span class="priceBox">$ 799</span></label> </div> <div class="form-group"> <label class="control-label col-sm-12" style="text-align:left;"><input type="radio" name="r1" id="reg_radio" data-value="Delegate"> <span class="nonBold">Delegate</span> <span class="priceBox">$ 829</span></label> </div> <div class="form-group"> <label class="control-label col-sm-12" style="text-align:left;"><input type="radio" name="r1" id="reg_radio" data-value="Virtual"> <span class="nonBold">Virtual</span> <span class="priceBox">$ 329</span></label> </div> <div class="form-group"> <label class="control-label col-sm-12" style="text-align:left;"><input type="radio" name="r1" id="reg_radio" data-value="Student"> <span class="nonBold">Student</span> <span class="priceBox">$ 399</span></label> </div> </div> </div> </div> <div class="col-sm-3"> <div class="panel panel-primary"> <div class="panel-heading"> <h5 class="text-center text-white" style="font-size:18.5px;">Extended Early Bird<br /><small style="color:#fff;">Before November 30, 2024</small></h5> <input type="checkbox" class="form-control card-checkbox" name="reg_check" id="reg_check" value="live" /> </div> <div class="panel-body"> <div class="form-group"> <label class="control-label col-sm-12" style="text-align:left;"><input type="radio" name="r2" id="reg_radio" data-value="Academic & Federal"> <span class="nonBold" style="display:inline-flex;">Academic &<br /> Federal</span> <span class="priceBox">$ 849</span></label> </div> <div class="form-group"> <label class="control-label col-sm-12" style="text-align:left;"><input type="radio" name="r2" id="reg_radio" data-value="Industry"> <span class="nonBold">Industry</span> <span class="priceBox">$ 949</span></label> </div> <div class="form-group"> <label class="control-label col-sm-12" style="text-align:left;"><input type="radio" name="r2" id="reg_radio" data-value="Delegate"> <span class="nonBold">Delegate</span> <span class="priceBox">$ 999</span></label> </div> <div class="form-group"> <label class="control-label col-sm-12" style="text-align:left;"><input type="radio" name="r2" id="reg_radio" data-value="Virtual"> <span class="nonBold">Virtual</span> <span class="priceBox">$ 399</span></label> </div> <div class="form-group"> <label class="control-label col-sm-12" style="text-align:left;"><input type="radio" name="r2" id="reg_radio" data-value="Student"> <span class="nonBold">Student</span> <span class="priceBox">$ 449</span></label> </div> </div> </div> </div> <div class="col-sm-3"> <div class="panel panel-primary"> <div class="panel-heading"> <h5 class="text-center text-white" style="font-size:18.5px;">Mid Term Registration<br /><small style="color:#fff;">Before February 13, 2025</small></h5> <input type="checkbox" class="form-control card-checkbox" name="reg_check" id="reg_check" value="not live" /> </div> <div class="panel-body"> <div class="form-group"> <label class="control-label col-sm-12" style="text-align:left;"><input type="radio" name="r3" id="reg_radio" data-value="Academic & Federal"> <span class="nonBold" style="display:inline-flex;">Academic &<br /> Federal</span> <span class="priceBox">$ 949</span></label> </div> <div class="form-group"> <label class="control-label col-sm-12" style="text-align:left;"><input type="radio" name="r3" id="reg_radio" data-value="Industry"> <span class="nonBold">Industry</span> <span class="priceBox">$ 999</span></label> </div> <div class="form-group"> <label class="control-label col-sm-12" style="text-align:left;"><input type="radio" name="r3" id="reg_radio" data-value="Delegate"> <span class="nonBold">Delegate</span> <span class="priceBox">$ 1049</span></label> </div> <div class="form-group"> <label class="control-label col-sm-12" style="text-align:left;"><input type="radio" name="r3" id="reg_radio" data-value="Virtual"> <span class="nonBold">Virtual</span> <span class="priceBox">$ 419</span></label> </div> <div class="form-group"> <label class="control-label col-sm-12" style="text-align:left;"><input type="radio" name="r3" id="reg_radio" data-value="Student"> <span class="nonBold">Student</span> <span class="priceBox">$ 549</span></label> </div> </div> </div> </div> <div class="col-sm-3"> <div class="panel panel-primary"> <div class="panel-heading"> <h5 class="text-center text-white" style="font-size:18.5px;">Late Registration<br /><small style="color:#fff;">Before April 17, 2025</small></h5> <input type="checkbox" class="form-control card-checkbox" name="reg_check" id="reg_check" value="not live" /> </div> <div class="panel-body"> <div class="form-group"> <label class="control-label col-sm-12" style="text-align:left;"><input type="radio" name="r4" id="reg_radio" data-value="Academic & Federal"> <span class="nonBold" style="display:inline-flex;">Academic &<br /> Federal</span> <span class="priceBox">$ 1049</span></label> </div> <div class="form-group"> <label class="control-label col-sm-12" style="text-align:left;"><input type="radio" name="r4" id="reg_radio" data-value="Industry"> <span class="nonBold">Industry</span> <span class="priceBox">$ 1099</span></label> </div> <div class="form-group"> <label class="control-label col-sm-12" style="text-align:left;"><input type="radio" name="r4" id="reg_radio" data-value="Delegate"> <span class="nonBold">Delegate</span> <span class="priceBox">$ 1149</span></label> </div> <div class="form-group"> <label class="control-label col-sm-12" style="text-align:left;"><input type="radio" name="r4" id="reg_radio" data-value="Virtual"> <span class="nonBold">Virtual</span> <span class="priceBox">$ 449</span></label> </div> <div class="form-group"> <label class="control-label col-sm-12" style="text-align:left;"><input type="radio" name="r4" id="reg_radio" data-value="Student"> <span class="nonBold">Student</span> <span class="priceBox">$ 599</span></label> </div> </div> </div> </div> <div class="col-sm-3" style="display: none;"> <div class="panel panel-primary"> <div class="panel-heading"> <h4 class="text-center White">On-Spot Registration<br /><small style="color:#fff;"> April 28, 2025 </small></h4> <input type="checkbox" class="form-control" name="final" disabled /> </div> <div class="panel-body"> <div class="form-group"> <label class="control-label col-sm-12" style="text-align:left;"><input type="radio" name="r4" value="1049" onClick="return get_radio_value()" data-value="Academic & Federal"> <span class="nonBold" style="display:inline-flex;">Academic &<br /> Federal</span> <span class="priceBox">$ 1049</span></label> </div> <div class="form-group"> <label class="control-label col-sm-12" style="text-align:left;"><input type="radio" name="r4" value="1099" onClick="return get_radio_value()" data-value="Industry"> <span class="nonBold">Industry</span> <span class="priceBox">$ 1099</span></label> </div> <div class="form-group"> <label class="control-label col-sm-12" style="text-align:left;"><input type="radio" name="r4" value="1149" onClick="return get_radio_value()" data-value="Delegate"> <span class="nonBold">Delegate</span> <span class="priceBox">$ 1149</span></label> </div> <div class="form-group"> <label class="control-label col-sm-12" style="text-align:left;"><input type="radio" name="r4" value="599" onClick="return get_radio_value()" data-value="Student"> <span class="nonBold">Student</span> <span class="priceBox">$ 599</span></label> </div> <div class="form-group"> <label class="control-label col-sm-12" style="text-align:left;"> <input type="radio" name="r4" value="449" onClick="return get_radio_value()" data-value="Virtual-Presentation"> <span class="nonBold">Virtual</span> <span class="priceBox">$ 449</span></label> </div> </div> </div> </div> <div style="clear:both;"></div> <!-- <p style="padding: 0 1.5%; font-size:14px;"><span class="text-danger"><strong>Important info:</strong></span> CHEM R&D/USG does not work with any 3rd parties to provide accommodation for this event. <u>Please beware if you receive any e-mails or other communication from 3rd parties informing you about the accommodation options.</u> The only trusted source of information about the accommodation is our website and communication from conference official e-mail address.</p> --> <div class="col-sm-4"> <div class="panel panel-danger"> <div class="panel-heading"> <h4 class="text-center" style="padding:10px 0;">Accommodation<br /><small>One-Night</small></h4> </div> <div class="panel-body"> <div class="form-group"> <div class="input-group"> <label class="control-label col-sm-10" style="text-align:left;"> <!-- <input type="radio" name="r5" value="175" data-value="Single Occupancy"> $175 Single Occupancy</label> --> <input type="radio" name="r5" data-value="Single Occupancy"> $195 Single Occupancy</label> <span class="input-group-addon"><i class="fa fa-bed"></i></span> <div> </div> </div> <span style="text-align:center; display:block; margin-top:2%;">Including VAT, Buffet Breakfast, and WiFi</span> </div> </div> </div> </div> <div class="col-sm-4"> <div class="panel panel-danger"> <div class="panel-heading"> <h4 class="text-center" style="padding:10px 0;">Accommodation<br /><small>One-Night </small></h4> </div> <div class="panel-body"> <div class="form-group"> <div class="input-group"> <label class="control-label col-sm-12" style="text-align:left;"> <input type="radio" name="r5" data-value="Double Occupancy"> $215 Double Occupancy</label> <span class="input-group-addon"><i class="fa fa-bed"></i></span> <span class="input-group-addon"><i class="fa fa-bed"></i></span> <div> </div> </div> <span style="text-align:center; display:block; margin-top:2%;">Including VAT, Buffet Breakfast, and WiFi</span> </div> </div> </div> </div> <div class="col-sm-4"> </div> </div> <div id="ead_checkbox" class="extra-nights-box hidden"><input type="checkbox" name="extraaccommodation" id="extra_accommodation" style="margin-top:-2px; margin-left:1px; vertical-align: middle;" /><span style="margin-left:2px; color:#fff;">No of Nights Accommodation</span></div> <div class="accommodation_extrabox" id="acd_extrabox" style="display:none;"> <div class="form-group"> <label class="control-label col-sm-2" for="title">Number of Nights:</label> <div class="col-sm-10"> <div class="input-group"> <span class="input-group-addon"><i class="fa fa-calendar"></i></span> <select class="form-control" name="numberofdays" id="numberof_days" onChange="days_accomodation();" style="width:auto;"> <option value="0" selected="selected">Select Nights</option> <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> <option value="4">4</option> <option value="5">5</option> <option value="6">6</option> <option value="7">7</option> </select> </div> </div> </div> <div class="form-group"> <label class="control-label col-sm-2" for="Check-in">Check-in Date:</label> <div class="col-sm-10"> <div class="input-group"> <span class="input-group-addon"><i class="fa fa-calendar"></i></span> <select class="form-control" name="dateofaccommodation" id="dateof_accommodation" style="width:auto;"> <option value="0" selected="selected">Select Date</option> <option value="04-26-2025" class="datesecond">04-26-25</option> <option value="04-27-2025">04-27-25</option> <option value="04-28-2025">04-28-25</option> </select> </div> </div> </div> <div class="form-group"> <label class="control-label col-sm-2" for="Checkout-date">Check-out Date:</label> <div class="col-sm-10"> <div class="input-group"> <span class="input-group-addon"><i class="fa fa-calendar"></i></span> <input type="text" class="form-control" placeholder="Check Out Date" name="checkoutdate" data="" id="checkoutdate" readonly> </div> </div> </div> </div> <div> <div id="discount_checkbox" class="extra-nights-box"><input type="checkbox" name="discountregistration" id="discountregistration" style="margin-top:-2px; margin-left:1px; vertical-align: middle;" /><span style="margin-left:2px; color:#fff;">Have a promo code?</span></div> <div id="display_discountinput" style="display:none;"> <div class="panel-body"> <div class="form-group"> <div class="col-sm-8 text-center"> <div class="input-group"> <span class="input-group-addon"><i class="fa fa-barcode"></i></span> <input type="text" name="discount_code" id="discount_code" value="" class="form-control" placeholder="Enter Discount Code" /> </div> </div> <div class="col-sm-4 text-center"> <input type="submit" value="Apply" class="discountcheck control-label" style="width:125px; background:#900; color:#fff; text-align: center; padding: 10px; border: 0px; margin: -5px;" /> </div> </div> </div> </div> <div class="form-group"> <label class="control-label col-sm-4" for="participants">Accompanying ($200 for each person):</label> <div class="col-sm-8"> <div class="input-group"> <span class="input-group-addon"><i class="fa fa-plus"></i></span> <select class="form-control" name="accompanying_name" id="accompanying" style="width:auto;"> <option value="0">0</option> <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> <option value="4">4</option> <option value="5">5</option> <option value="6">6</option> <option value="7">7</option> <option value="8">8</option> <option value="9">9</option> <option value="10">10</option> </select> </div> </div> </div> <span id="jsonpResult"></span> </div> <div class="panel panel-danger"> <h1 class="text-center text-uppercase text"><strong>Summary</strong></h1> <div class="row"> <div class="col-md-6"> <p class="summery-invisible" style="text-align:left; margin-bottom: 0px;">Registration Price:<strong style="float:right;">$ <span id="show_registration_price"> </span></strong> <span class="reg_discountsec" style="text-align:left; display:none;"><small>Discount Amount:</small><strong style="float:right; position: relative;"> - $ <span id="registrationdiscount"></span></strong></span> </p> <div class="clearfix"></div> <p class="summery-invisible" style="text-align:left; margin-bottom: 0px;">Accommodation:<strong style="float:right;">$ <span id="showaccommodation_price"></span></strong> <span class="acc_discountsec" style="text-align:left; display:none;"><small>Discount Amount:</small><strong style="float:right; position:relative;">- $ <span id="accommodationdiscount"></span></strong></span> </p> <div class="clearfix"></div> <p class="summery-invisible discountsec" style="text-align:left; display:none;"><strong>Total Discounts:</strong><strong style="float:right;">- $ <span id="showdiscount_price"></span></strong> <div class="clearfix"></div> </p> </div> <div class="col-md-6"> <p class="summery-invisible mb-0" style="text-align:left;">Participants:<strong style="float:right;"> <span id="shownumberof_participants"></span></strong> </p> <p class="summery-invisible mb-0" style="text-align:left;">Total No. Nights:<strong style="float:right;"> <span id="showselected_numberofdays"></span></strong> </p> <p class="summery-invisible mb-0" style="text-align:left;">Accompanying:<strong style="float:right;"> <span id="show_accompanying_price">0</span></strong> </p> <span class="summery-invisible discountsec" style="display:none; float:left;"><strong>Discounts Code:</strong></span><strong style="float:right;"> <span id="showdiscountcode" style="padding-right: 17px; float: right; margin-top: 13%;"></span></strong> <div class="clearfix"></div> </div> <div class="col-md-6 show_check_in_and_check_out_div" style="display: none;"> <p class="summery-invisible" style="text-align:left;"><strong>Check-in Date:</strong><strong style="float:right;"> <span id="showcheckin"></span></strong> <div class="clearfix"></div> <span class="summery-invisible" style="text-align:left; width: 50%; padding-right: 0; font-size:15px;"><strong>Check-out Date:</strong></span><strong style="float:right;"> <span id="showcheckout" style="padding-right: 17px; float: right;"></span></strong> <div class="clearfix"></div> </p> </div> <div class="clearfix"></div> <style> hr.style-one { border: 0; border-bottom: 1px dashed #333; background: #fff; width: 90%; margin: 0px auto; padding: 0px; } #jsonpResult h2 { text-transform: capitalize !important; } </style> <hr class="style-one"> <div class="clearfix"></div> <div class="col-md-12 text-center py-3"> <h2><strong>Total Price:</strong> <strong> $ <span id="showtotalprice"></span></strong></h2> </div> <br /> </div> </div> <div class="well well-lg"> <h4 class="text-center">By clicking "pay", you agree to the <a href="https://unitedscientificgroup.org/privacy-policy.php" target="_blank" title="Privacy Policy" style="color:#000;">privacy policy</a>, <a href="https://unitedscientificgroup.org/conferences-terms-and-conditions" target="_blank" title="Conference Terms & Conditions" style="color:#000;">terms & conditions</a> and <span id="cpolicy" style="cursor:pointer;" title="Cancellation Policy">cancellation policy</span></h4> <p class="text-center">Selected Price $: <small>Inclusive of all taxes.</small></p> <div class="input-group col-md-3" style="margin:0 auto;"> <span class="input-group-addon">$</span> <div id="displayprice" class="form-control"></div> <input class="form-control" type="hidden" readonly name="price" id="price" value="" placeholder="" required style="width:80%;" /> </div> <br> <!--<div class="input-group" style="width:325px; margin:0 auto;"> <button type="submit" class="btn btn-primary btn-lg" style="width:125px;" name="register">Pay</button>   <button type="reset" class="btn btn-secondary btn-lg" style="width:125px; background:#900; color:#fff;">Reset</button></div>--> <div class="row" style="margin-top:2%;"> <div class="col-md-4"></div> <div class="col-md-2"> <div class="input-group" style="display: flex; margin-bottom: 1%;"> <button type="submit" class="btn btn-primary btn-lg" style="width:100% !important;" name="register">Pay</button> </div> </div> <div class="col-md-2"> <div class="input-group" style="display: flex; margin-bottom: 1%;"> <button type="reset" class="btn btn-secondary btn-lg" style="width:100% !important; background:#900; color:#fff;">Reset</button> </div> </div> </div> </div> </form> <div class="clearfix"></div> <div class="row" style="margin-top: 10px !important;"> <div class="col-md-12" style="padding-top:20px;"> <div style="background:#eee; padding:10px; margin:5px 0; border:1px solid #ddd;"> <p style="padding:5px 0; margin:5px 0; font-size:16px;" class="text-uppercase"><strong>Registration includes ↓</strong></p> <ul> <li>Welcome coffee</li> <li>Access to main conference sessions, exhibits, poster sessions and round table discussions</li> <li>Conference material</li> <li>Lunch, tea / coffee breaks during the conference days</li> <li>WiFi in meeting rooms</li> </ul> </div> <div id="cancellation"></div> <div style="background:#fff; padding:10px; margin:5px 0; border:1px solid #ddd;"> <p style="padding:5px 0; margin:5px 0; font-size:16px;" class="text-uppercase"><strong>Accommodation includes ↓</strong></p> <p style="color:#54805c; font-size:16px;">For delegates who are accommodated in <span class="text-uppercase"><strong> NH Collection Frankfurt Spin Tower, Gu虉terplatz 1, d-60327 Frankfurt Am Main, Frankfurt, Germany</strong></span></p> <ul> <li>Complimentary Wi-Fi in the guest rooms</li> <li>Complimentary Breakfast</li> </ul> </div> <div id="tconditions"></div> <div style="background:#eee; padding:10px; margin:5px 0; border:1px solid #ddd;"> <p style="padding:5px 0; margin:5px 0; font-size:16px;" class="text-uppercase"><strong>Registration cancellation policy ↓</strong></p> <p>Cancellation policy is strictly followed and all cancellations must be made in writing. <br> Cancellation before 120 days of the conference start date will receive a full refund, less a $150 towards administrative fee.<br> Cancellation between 119 to 90 days prior to the conference start date will receive 50 % refund.<br> Cancellations received below 89 days of the conference start date are non-refundable.<br> Refunds will be made within 60 days of receipt of cancellation notification.</p> <p style="padding:5px 0; margin:5px 0; font-size:16px;" class="text-uppercase"><strong>Accommodation cancellation policy ↓</strong></p> <p>Please be advised that any accommodation cancellation requests received within 10 days prior to the conference start date are deemed non-refundable.</p> <!--<p style="text-align:right; font-size:12px;"><small>Updated: March 03, 2021</small></p>--> <p style="padding:5px 0; margin:5px 0; font-size:16px;" class="text-uppercase"><strong>Exhibitor cancellation policy ↓</strong></p> <p>Once the conference advertises exhibit/sponsorship on the conference website, registration cannot be cancelled. Payments are exclusively for exhibit/sponsorship advertisement and are non-refundable.</p> </div> <div style="background:#fff; padding:10px; margin:5px 0; border:1px solid #ddd;"> <p style="padding:5px 0; margin:5px 0; font-size:16px;" class="text-uppercase"><strong>Cancellation policy in the events of natural disasters or unpredictable activity ↓</strong></p> <p>Organizer is not responsible for any loss or damage as a result of substitution, alteration, postponement, or cancellation of an event due to causes beyond its control including without limitation, force majeure, natural disasters, organic pathogens, sabotage, accident, trade or industrial disputes, terrorism, or hostilities.<br /> The organizer reserve the right to cancel or postpone the conference in case of any natural disasters, organic pathogens, calamities or terrorism activity. In this case, organizer cannot accept refund requests from the conference delegates, speakers or attendees that result from cancelled flights and or natural disasters, organic pathogens, calamities, terrorism activity. The organizer will provide opportunity for the registered delegates and attendees to transfer their registration fee and accommodation charges to any future or related conferences.<br /> The organizer will not accept any liability for personal injuries or for loss or damage to property belonging to the delegates, either during, or as a result of the conference. </p> </div> </div> </div> </div> </main> </div><!-- end row --> </div><!-- end container --> <!-- ========================= FOOTER SECTION ============================== --> <footer class="pt-5"> <div class="container"> <div class="row"> <div class="col-md-3 col-sm-3 quicklinks"> <img src="images/footer-logo.png" alt="CHEM R&D 2025" class="img-fluid"> </div> <div class="col-md-5 col-sm-5"> <img src="images/usg-logo-footer.png" alt="usg logo" class="img-fluid"> <p><strong>USG United Scientific Group</strong><br /> A non-profit organization<br /> 8105, Suite 112, Rasor Blvd<br /> PLANO, TX 75024<br /> +1-469-854-2280/81<br /> <a href="mailto:chem@uniscigroup.org">chem@uniscigroup.org</a> </p> </div> <div class="col-md-4"> <div class="contact_detail"> <div class="section-title"> <h2>Subscribe Us</h2> </div> <form id="enqform" name="enqform" method="post" data-form-type="subscribe" action=""> <input name="enqname" type="text" class="form-control mb-3" id="enqname" placeholder="Name"> <input name="enqemail" type="email" class="form-control mb-3" id="enqemail" placeholder="Email"> <div class="col-md-6 col-sm-10"> <button class="form-control" onclick="return enquiry();">Subscribe</button> </div> </form> <div id="enqmsg" class="text-dark"></div> </div> </div> </div> </div> <div class="col-sm-12 text-center copy-right"> <p class="wow fadeInUp" data-wow-delay="0.6s">Copyright © <script type="text/javascript"> var year = new Date(); document.write(year.getFullYear()); </script> <a href="https://www.unitedscientificgroup.org/" target="_blank" class="text-dark fw-bold">USG United Scientific Group</a> All Right Reserved<br /> <a href="https://unitedscientificgroup.org/privacy-policy">Privacy Policy</a> | <a href="https://unitedscientificgroup.org/conferences-terms-and-conditions">Terms of Service</a> </p> </div> </footer> <!-- Back top --> <a href="#back-top" class="go-top"><i class="fa fa-angle-up"></i></a> <!-- ========================= SCRIPTS ============================== --> <script src="https://code.jquery.com/jquery-3.3.1.min.js"></script> <script> function enquiry() { event.preventDefault(); var name = document.enqform.enqname.value; var email = document.enqform.enqemail.value; if (document.enqform.enqname.value == "") { alert("Please enter your Name"); document.enqform.enqname.focus(); return false; } if (document.enqform.enqemail.value == "") { alert("Please enter your Email"); document.enqform.enqemail.focus(); return false; } var id = document.enqform.enqemail.value; //The regular expression for a valid e-mail address var re = /^.+\@.+\..{2,4}$/gi; if (!id.match(re)) { //If it is NOT a match //flag++; //errors = errors + "Invalid E-Mail\n"; alert("Not a valid e-mail address"); document.enqform.enqemail.focus(); return false; } if (window.XMLHttpRequest) // code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp = new XMLHttpRequest(); else // code for IE6, IE5 xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); xmlhttp.onreadystatechange = function() { if (xmlhttp.readyState == 4 && xmlhttp.status == 200) document.getElementById("enqmsg").innerHTML = xmlhttp.responseText; } xmlhttp.open("GET", "enqMessage.php?q=" + email + "&n=" + name, true); xmlhttp.send(); document.enqform.reset(); return false; } $(document).ready(function() { $("#program_form").on("submit", function(event) { event.preventDefault(); $.ajax({ url: "ajax_forms.php", type: "post", data: $(this).serialize(), success: function(data) { $('#program_form')[0].reset(); var downloadfile = $("#abstarct2024_download").attr('href'); $(".close").trigger("click"); window.open(downloadfile, '_parent'); // var newtab = window.open(); // newtab.location.href = "password.php"; } }); return false; }); $("#contactForm").submit(function(event) { // cancels the form submission event.preventDefault(); submitForm(); }); function submitForm() { // Initiate Variables With Form Content var name = $("#name").val(); var email = $("#email").val(); var message = $("#message").val(); if (email != '') { $.ajax({ type: "POST", url: "contact_process.php", data: "name=" + name + "&email=" + email + "&message=" + message, success: function(text) { if (text == "Submitted Successfully") { formSuccess(); $("#contactForm")[0].reset(); } else { formError(); submitMSG(false, text); } } }); } } function formSuccess() { $("#msgSubmit").removeClass("hidden"); } function formError() { $("#contactForm").removeClass("hidden").addClass('shake animated').one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function() { $("#msgSubmit").removeClass("hidden"); }); } function submitMSG(valid, msg) { var msgClasses; if (valid) { msgClasses = "h3 text-center tada animated text-success"; } else { msgClasses = "h3 text-center text-danger"; } $("#msgSubmit").removeClass().addClass(msgClasses).text(msg); } function AajaxLogin() { // event.preventDefault(); $(".error").text(""); $('#password-info').removeClass("error"); var password = $('#Alogin-password').val(); var actionString = 'loginbook'; if (password == "") { $('#password-info').addClass("error"); $(".error").text("required"); } else { // show loader $('#loaderId').show(); $.ajax({ url: 'ajax-login-abstracts.php', type: 'POST', data: { password: password, action: actionString }, async: false, success: function(response) { if (response.trim() == 'error') { $('#login-success-message').hide(); $('#ajaxloader').hide(); $('#login-error-message').html( "Invalid Attempt. Try Again."); $('#login-error-message').show(); } else { $('.demo-container').html(response); var urlt = 'test'; window.open('https://catalysis.unitedscientificgroup.org/abstracts/' + $.trim(response), '_blank'); //register_window.dialog("close"); //$("#login-dialog").dialog("close"); } } }); this.close(); } // endif return false; } $("#sign-up").submit(function(event) { // cancels the form submission event.preventDefault(); sign_upsubmitForm(); }); function sign_upsubmitForm() { // Initiate Variables With Form Content var name = $("#sign-up-name").val(); var email = $("#sign-up-email").val(); var organization = $("#sign-up-organization").val(); var job = $("#sign-up-job").val(); var message = $("#sign-up-message").val(); if (email != '') { $.ajax({ type: "POST", url: "sign-up-process.php", data: "name=" + name + "&email=" + email + "&message=" + message + "&organization=" + organization + "&job=" + job, success: function(text) { if (text == "Submitted Successfully") { sign_upformSuccess(); $("#sign-up")[0].reset(); } else { sign_upformError(); sign_upsubmitMSG(false, text); } } }); } } function sign_upformSuccess() { $("#sign-upmsg").removeClass("hidden"); } function sign_upformError() { $("#sign-up").removeClass("hidden").addClass('shake animated').one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function() { $("#sign-upmsg").removeClass("hidden"); }); } function sign_upsubmitMSG(valid, msg) { var msgClasses; if (valid) { msgClasses = "h3 text-center tada animated text-success"; } else { msgClasses = "h3 text-center text-danger"; } $("#sign-upmsg").removeClass().addClass(msgClasses).text(msg); } $("#book_form").on("submit", function(event) { event.preventDefault(); $.ajax({ url: "ajax_forms.php", type: "post", data: $(this).serialize(), success: function(data) { $('#book_form')[0].reset(); var downloadfile = 'https://catalysis.unitedscientificgroup.org/password'; $(".close").trigger("click"); window.location.href = downloadfile; //window.open(downloadfile, '_blank'); } }); return false; }); $('#parentHorizontalTab').easyResponsiveTabs({ type: 'default', //Types: default, vertical, accordion width: 'auto', //auto or any width like 600px fit: true, // 100% fit in a container tabidentify: 'hor_1', // The tab groups identifier activate: function(event) { // Callback function if tab is switched var $tab = $(this); var $info = $('#nested-tabInfo'); var $name = $('span', $info); $name.text($tab.text()); $info.show(); } }); // $("#sessionid").change(function() { // $("#subsessions").hide(); // if ($(this).val() == "Organic, Structural and Organometallic Chemistry") { // $("#Organic").removeAttr("style"); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Inorganic Chemistry and Biochemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").removeAttr("style"); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Chemical Biology and Chemical Synthesis") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#ChemicalBiologyandChemicalSynthesis").removeAttr("style"); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Physical Chemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").removeAttr("style"); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Analytical and Bioanalytical Chemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").removeAttr("style"); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Pharmaceutical and Medicinal Chemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").removeAttr("style"); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Polymer Chemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").removeAttr("style"); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Nuclear and Radio Chemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").removeAttr("style"); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Nano Science and Materials Chemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").removeAttr("style"); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Chemical Engineering and Industrial Chemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").removeAttr("style"); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Surface Chemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").removeAttr("style"); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Supramolecular Chemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").removeAttr("style"); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Theoretical and Computational Chemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").removeAttr("style"); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Food Chemistry and Biochemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").removeAttr("style"); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Forensic Chemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").removeAttr("style"); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Green Chemistry and Sustainability") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").removeAttr("style"); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Environmental and Geo Chemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").removeAttr("style"); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Photochemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").removeAttr("style"); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Chemical Kinetics and Catalysis") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").removeAttr("style"); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Petrochemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").removeAttr("style"); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Thermochemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").removeAttr("style"); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Pure and Applied Chemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").removeAttr("style"); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Electrochemistry and Corrosion") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").removeAttr("style"); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Chemistry of Energy") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").removeAttr("style"); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Chemistry of Transition Elements") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").removeAttr("style"); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Natural Products Chemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").removeAttr("style"); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Chemistry in Clinical Research, Diagnostics and Nanotherapeutics") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").removeAttr("style"); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Emerging Trends and Future Scope of Chemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").removeAttr("style"); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Select") {} // }); }); </script> <script src="js/easyResponsiveTabs.js"></script> </body> </html>