CINXE.COM
B2B
<!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1 shrink-to-fit=no" /> <link rel="shortcut icon" href="../../images/neob2b/samsung.ico" type="image/x-icon" /> <!--HTTP 1.1--> <meta charset="UTF-8" /> <meta http-equiv='X-UA-Compatible' content='IE=edge' /> <meta http-equiv="pragma" content="no-cache" /> <meta http-equiv="cache-control" content="no-cache" /> <meta http-equiv="expires" content="0" /> <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport"> <link rel="shortcut icon" href="/b2b/images/neob2b/samsung.ico" type="image/x-icon" /> <title> B2B </title> <link rel="stylesheet" href="/b2b/bootstrap/css/bootstrap.min.css"> <link rel="stylesheet" href="/b2b/jquery/select2/css/select2.min.css"> <link rel="stylesheet" href="/b2b/css/neob2b/login.css" media="all" /> <script src="/b2b/jquery/jquery3/jquery-3.2.1.min.js"></script> <script src="/b2b/bootstrap/js/bootstrap.min.js"></script> <script src="/b2b/jquery/select2/js/select2.full.min.js"></script> <script src='/b2b/js/jstz.js'></script> <script src="/b2b/jquery/jquery-ui/jquery-ui.js" type="text/javascript"></script> <script type="text/javascript" src="/b2b/js/jsbn/jsbn.js"></script> <script type="text/javascript" src="/b2b/js/jsbn/rsa.js"></script> <script type="text/javascript" src="/b2b/js/jsbn/prng4.js"></script> <script type="text/javascript" src="/b2b/js/jsbn/rng.js"></script> <script> $(document).ready(function(){ openCookieBanner(); var isSdsCiAdmin = ''; if(isSdsCiAdmin == "true"){ document.getElementById("id").value=''; alert("Privacy charges are not logged in with ID/PW. Please sign in by SSO or AD SSO."); } }); $(window).on("load", function () { $('#contents').css('height', '100%'); }); function getClientTimeZone(){ var tz = jstz(); var timezone = tz.timezone_name; //alert(timezone); return timezone; } function login(){ alert('sdp.sec.samsung.net 은 ID/Password 로그인을 지원하지 않습니다.'); return; //ID PASS 로그인을 지원하려면 위의 alert 을 삭제 하세요. var passwd = document.getElementById('pass').value; var id = document.getElementById('id').value; if(id==null || id==''){ alert('Please input Login Id!'); return; }else if(passwd==null || passwd==''){ alert('Please input password!'); return; } document.getElementById('passwordHash').value=passwd; document.getElementById('loginId').value=id; document.getElementById('clientTimezone').value=getClientTimeZone(); document.loginForm.action = "/b2b/sample/anonymous/login.do"; document.loginForm.submit(); } function validateEncryptedForm() { var username = document.getElementById("id").value; var password = document.getElementById("pass").value; if (!username || !password) { alert("Please enter Id/PW"); return; } try { var rsaPublicKeyModulus = document.getElementById("rsaPublicKeyModulus").value; var rsaPublicKeyExponent = document.getElementById("rsaPublicKeyExponent").value; submitEncryptedForm(username,password, rsaPublicKeyModulus, rsaPublicKeyExponent); } catch(err) { alert(err); } } function submitEncryptedForm(username, password, rsaPublicKeyModulus, rsaPpublicKeyExponent) { var rsa = new RSAKey(); rsa.setPublic(rsaPublicKeyModulus, rsaPpublicKeyExponent); // 사용자ID와 비밀번호를 RSA로 암호화한다. var securedUsername = rsa.encrypt(username); var securedPassword = rsa.encrypt(password); // POST 로그인 폼에 값을 설정하고 발행(submit) 한다. document.getElementById("loginId").value = securedUsername; document.getElementById("passwordHash").value = securedPassword; document.getElementById("id").value=''; document.getElementById("pass").value=''; //////////Old password///////////////////////// var rsaOld = new RSAKey(); rsaOld.setPublic(document.getElementById("rsaPublicKeyModulesOld").value, document.getElementById("rsaPublicKeyExponentOld").value); document.getElementById("loginIdOld").value = rsaOld.encrypt(username); document.getElementById("passwordOld").value = rsaOld.encrypt(password); //////////Old password///////////////////////// document.loginForm.submit(); } function doChangePassword() { var userId = $("#cUserId").val(); var emaiAddress = $("#cEmailAddress").val(); if (userId == null || userId == "" || userId == "undefined") { alert("Enter the User ID"); $("#cUserId").focus(); return; } if (emaiAddress == null || emaiAddress == "" || emaiAddress == "undefined") { alert("Enter the Email Address"); $("#cEmailAddress").focus(); return; } var url = "/b2b/identity/anonymous/chageImsiPassword.do"; $.ajax({ type: "POST", url: url, dataType: "json", data: { userId: $("#cUserId").val(), emailAddress : $("#cEmailAddress").val() }, success: function(data) { if (data != null && data != "undefined") { $("#resultMessage").html(data.MESSAGE); $("#forgotPasswordMessage").modal(); } }, error: function(request, err, ex) { alert("[FAIL]" + err + "==>" + ex); } }); } function doResetPassword() { $("#cUserId").val(""); $("#cEmailAddress").val(""); } function goRegistration() { var url = "/b2b/identity/anonymous/viewPubRegUserRegInfo.do"; document.location.href=url; } function downloadUserGuide(type) { document.location.href = "/b2b/identity/anonymous/downloadUserGuide.do?guideType=" + type; } function dsADSign() { document.location.href="/b2b/identity/anonymous/dsADSSOLogin.do"; } //쿠키 처리방침 function openCookiePolicy() { $("#CookiePolicyClick").click(); } function openCookieBanner() { showBackLayer(); var $el = $('<div id="cookieBanner" style="left: 0px; height: 100px; right: 0px; bottom: 0px; position: absolute; z-index: 1000000; background-color: rgb(255, 255, 255);"></div>'); var elStr ='<a href="javascript:closeCookieBanner();" style="top: 5px; right: 50%; position: absolute;">' + ' <img src="/b2b/images/button/btn_pop_close.gif"/>' + '</a>' + '<div style="padding: 20px 34px;">' + ' <p style="font-size: 14px; margin-bottom: 8px;">' + ' <b>Samsung and Cookies</b>' + ' </p>' + ' <p>' + ' Our site uses essential cookies only. You can read our ' + ' <a style="text-decoration: underline;" href="javascript:openCookiePolicy();">Cookie Policy</a>' + ' for more information.' + ' </p>' + '</div>'; $el.html(elStr); $el.appendTo('body'); } function closeCookieBanner() { hideBackLayer(); $('#cookieBanner').remove(); } function showBackLayer() { $("body").css({overflow:'hidden'}); var $el = $('#backLayer'); if($el.length == 0) $el = $('<div id="backLayer" style="background-color:black; opacity:0.5; position:absolute; left:0px; top:0px; width:100%; height:100%; z-index:1000;">'); $el.appendTo('body'); $el.show(); } function hideBackLayer() { $("body").removeAttr('style'); $(window).resize(); $('#backLayer').hide(); } </script> </head> <body> <div class="main login"> <!-- content --> <div id="contents" class="contents"> <div class="txt_wrap"> <h1><img src="../../images/neob2b/logo_b2b_black.png" alt="B2BWORKPLACE" /></h1> <div class="desc"> <h2 class="title"><strong>Global Harmony</strong> with People, Society & Environment</h2> <span>R&D is at the heart of everything Samsung does. Ongoing investment in our collaborative global research network plays </span> <span>a critical role in our ability to innovate products today that will enrich people's lives tomorrow.</span> </div> <img src="../../images/neob2b/img_product.png" alt="Samsung Product" /> </div> <div class="visual_wrap"> <div class="visual_main"><img src="../../images/neob2b/img_visual.png" alt="B2BWORKPLACE" /></div> <div class="login"> <div class="logo">B2BWORKPLACE</div> <form name="loginForm" method="post" action="/b2b/sample/anonymous/login.do"> <input type="hidden" name="loginId" id="loginId"/> <input type="hidden" name="passwordHash" id="passwordHash"/> <input type="hidden" name="clientTimezone" id="clientTimezone"/> <!--id_pass --> <input type="hidden" id="rsaPublicKeyModulus" value="c8d31aea6723f897a2afb8b93332224d7a85a0f35ac7b88b67b3312a72d52c9e776def766fab43d885a63246f3fef0f632e83b40e335b878e77a97fed240122b6e19e0ad481f250c6ec3ec74734a5ef827889e619d8bcf77b9b539dddc65743587233c28352c346a79064abd55cccada758cfe46e11709f6fff44475d1fadad9699e50fdacb656b71517538f8e9508c19988f039debeddff33ea3346d1460ca264ddcf76dcdb2bf6b5708a7b3637d82bdf553f9cb900aa82876ada4837fe576e5e414aca08b8c787b56bedee43b55bc84fe42e6e3cb46be8714efa524048a52cce2819a9ab05fcebe20b92dc90e5e67d90c7e62831470333ceed3844f2e3b21f" /> <input type="hidden" id="rsaPublicKeyExponent" value="10001" /> <input type="hidden" name="loginIdOld" id="loginIdOld"/> <input type="hidden" name="passwordOld" id="passwordOld"/> <input type="hidden" id="rsaPublicKeyModulesOld" value="e854f732da4bee813e632005733b9eafe4cdaea6a220744f5359e33619190102360804c1e8c3c9e638cbeccb2b3a2fecbb20b4597815273524f874f29df2b637" /> <input type="hidden" id="rsaPublicKeyExponentOld" value="10001" /> <fieldset> <legend>login 입력정보</legend> <input type="text" id="id" class="input_text" placeholder="ID" title="ID를 입력하세요." /> <input type="password" id="pass" placeholder="Password" title="비밀번호를 입력하세요." onkeypress="if (event.keyCode==13) validateEncryptedForm()"/> <button type="button" class="btn" onclick="validateEncryptedForm()">Sign In</button> </fieldset> </form> <div class="login_link"> <a href="#" class="find_pw" data-toggle="modal" data-target="#forgotPassword">Forgot Password?</a> <a href="#" class="sign_up" onclick="goRegistration()">Registration</a> </div> <br> <fieldset> <button type="button" class="btn" onclick="dsADSign()">DS AD Sign In</button> </fieldset> </div> </div> <div class="banner_wrap"> <ul> <li><a href="https://sec-audit.com/common/portal/sdpMain.do" target="_blank" class="guide_biz"><i class="iconset icon_bnr_biz"></i>Samsung Business Guideline</a></li> <li><a href="#" class="contact_us" data-toggle="modal" data-target="#ContactUs"><i class="iconset icon_bnr_contact"></i>Contact Us</a></li> <li><a href="#" class="guide_reg" onclick="downloadUserGuide('REGISTRATION_GUIDE')"><i class="iconset icon_bnr_reg"></i>Registration Guide</a></li> </ul> </div> </div> <!-- Modal Contact Us --> <div class="modal fade" id="ContactUs" tabindex="-1" role="dialog" aria-hidden="true"> <div class="modal-dialog" style="width: 800px; top: 50%; margin-top: -170px"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> <h4 class="modal-title">Contact Us</h4> </div> <div class="modal-body"> <!-- Modal body --> <div id="contactNav"> <table style="heitht: 100%;width: 100%;"> <tr> <td colspan="2" style="text-align: center;padding-bottom: 30px;font-family: verdana,geneva,helvetica,arial,sans-serif,msmincho; font-size:14px;"> Choose the category you want to inquire about.</td> </tr> <tr> <td style="text-align: right;padding-right: 50px;"> <button id="wiznetBtn" class="btn_srch">WizNET</button> </td> <td style="text-align: left;padding-left: 50px;"> <button id="b2bBtn" class="btn_srch">B2B WP</button> </td> </tr> </table> </div> <!-- Modal Contact Us --> <div id="backToNav" style="display:none;margin-bottom: 30px;"> <a href= "#" class="nav_exp" title="Pre Page"></a> </div> <div id="b2b" style="display:none;"> <table class="table text-center"> <thead> <tr> <th style="width: 110px">Role</th> <th style="width: 110px">Site</th> <th>E-Mail</th> <th style="width: 140px">Name</th> <th style="width: 140px">Tel</th> </tr> </thead> <tbody> <tr> <td id="divisionTd" rowspan="3">Process</td> <td>System LSI</td> <td><a href="mailto:nicehs.han@samsung.com">nicehs.han@samsung.com</a></td> <td>HeeSup HAN</td> <td>82-31-8037-5840</td> </tr> <tr> <td>Memory</td> <td><a href="mailto:divira.kim@samsung.com">divira.kim@samsung.com</a></td> <td>Yeonhwak Kim</td> <td>82-10-4541-3235</td> </tr> <tr> <td>LED</td> <td><a href="mailto:yc8406.kang@samsung.com">yc8406.kang@samsung.com</a></td> <td>Yongchul Kang</td> <td>82-31-8021-3384</td> </tr> <tr> <td>IT Support</td> <td>-</td> <td><a href="mailto:b2bit.sec@samsung.com">b2bit.sec@samsung.com</a></td> <td>B2B IT Support</td> <td>-</td> </tr> </tbody> </table> </div> <div id="wiznet" style="display:none;"> <table id="example" class="table text-left table-condensed" style="width:100%"> </table> </div> <!-- //Modal Contact Us--> <br> <!-- DataTables --> <link rel="stylesheet" href="/b2b/bootstrap/datatables/datatables.min.css"> <script src="/b2b/bootstrap/datatables/datatables.js"></script> <!-- DataTables RowGroup(Span) --> <script> $(function(){ var userID = ''; if(userID != '') { $("#divisionTd").attr("rowspan", 1); }else { $("#divisionTd").attr("rowspan", 3); } var data = [ ['aa', 'IT', '-', 'wiznet.sec@samsung.com', 'WizNet Support', '-'], ['ab', 'Process', 'Common', 'wiznet.sec@samsung.com', 'WizNet Support', '-'], ['ac', 'Process', 'SOC(CP/Protocol)', 'iamsjy@samsung.com', 'Jeongyeon Seo', '82-31-8037-1593'], ['ac', 'Process', 'SOC(Connectivity)', 'connectivity@samsung.com', 'Connectivity Support', '-'], ['ac', 'Process', 'SOC(AP/Platform)', 'sjs.yoon@samsung.com', 'JUHA YOON', '82-31-8037-4247'], ['ac', 'Process', 'SOC(AP/Platform)', 'somi.lee@samsung.com', 'Somi Lee', '82-10-8732-9179'], ['ac', 'Process', 'SOC(AP/Platform)', 'moon9124@samsung.com', 'Daein Moon', '-'], ['ac', 'Process', 'SOC(Multimedia)', 'eunju81.hong@samsung.com', 'Eunjoo Hong', '82-10-7460-8026'], ['ac', 'Process', 'SOC(Multimedia)', 'nari.im@samsung.com', 'NaRi Im', '82-10-4321-9344'], ['ad', 'Process', 'Sensor', 'jwon.yoo@samsung.com', 'Jiwon Yoo', '82-31-8073-5673'], ['ad', 'Process', 'Sensor', 'sh0426.son@samsung.com', 'Sungho Son', '82-10-6235-8677'], ['ad', 'Process', 'Sensor', 'h.s.yoon@samsung.com', 'Hyungseok Yoon', '82-31-8037-5674'], ['ad', 'Process', 'Sensor', 'bj98.ahn@samsung.com', 'ByungJoo Ahn', '82-31-8037-5693'], ['ad', 'Process', 'Sensor', 'sh0120.kim@samsung.com', 'KIM SUNGHYUN', '82-10-9127-5219'], ['ad', 'Process', 'Sensor', 'ks910.kim@samsung.com', 'Taewoo Kim', '82-31-8037-5696'], ['ad', 'Process', 'Sensor', 'sh0426.son@samsung.com', 'Kwangsoo Kim', '82-31-8096-7010'], ['ae', 'Process', 'Display Solution', 'joohyeon.lee@samsung.com', 'Joohyeon Lee', '82-31-8037-2583'], ['ae', 'Process', 'Display Solution', 'mook207.lee@samsung.com', 'Geummook Lee', '82-31-8037-2547'], ['ae', 'Process', 'Display Solution', 'hkkim67@samsung.com', 'Hyeoungki Kim', '82-31-277-0683'], ['ae', 'Process', 'Display Solution', 'kc05.choi@samsung.com', 'YoungHo Choi', '82-31-8037-2613'], ['af', 'Process', 'Power', 'ym.lim@samsung.com', 'YoungMin Lim', '82-31-8037-3109'], ['af', 'Process', 'Power', 'banghm@samsung.com', 'Brian Bang', '82-10-8714-8075'], ['af', 'Process', 'Power', 'wonseok.kang@samsung.com', 'Wonseok Kang', '82-31-8037-3107'], ['af', 'Process', 'Power', 'pedro.chang@samsung.com', 'Jinyoung Chang', '82-31-8037-3240'], ['ag', 'Process', 'Security', 'ys.hwang@samsung.com', 'Youngseok Hwang', '82-10-6585-6339'], ['ag', 'Process', 'Security', 'yongw.kim@samsung.com', 'Yongwook Kim', '82-31-8037-2176'], ['bb', 'Process', 'Automotive', 'ns5821.kim@samsung.com', 'Namsik Kim', '82-31-8096-7255'], ['bb', 'Process', 'Automotive', 'yutae.choi@samsung.com', 'Yutae Choi', '82-31-8096-4475'], ['bb', 'Process', 'Automotive', 'sidong.park@samsung.com', 'SIDONG PARK', '82-10-2623-5972'], ['bb', 'Process', 'Automotive', 'e.quacchio@samsung.com', 'Emanuele Quacchio', '49-89-45578-2425'], ['bb', 'Process', 'Automotive', 'kideok1.kim@samsung.com', 'Kideok Kim', '82-10-4116-0864'] ]; var table = $('#example').DataTable({ columns: [ { title: '', visible:false}, { title: 'Role', width: '15%', className: 'text-center', orderable: false}, { title: 'Site', width: '20%', orderable: false}, { title: 'E-Mail', width: '25%', orderable: false}, { title: 'Name', width: '20%', orderable: false}, { title: 'Tel', width: '20%', orderable: false} ], data: data, order: [[0, 'asc'], [1, 'asc']], rowsGroup: [1,0,2], pageLength: 10, searching : false, processing : false, bLengthChange: false, autoWidth: false, info: false }); $("#wiznetBtn").click(function() { //Hide the div $("#contactNav").hide(); $("#b2b").hide(); $("#backToNav").show(); $("#wiznet").show(); }); $("#b2bBtn").click(function() { //Hide the div $("#contactNav").hide(); $("#wiznet").hide(); //Reset the data list $('#example').dataTable().fnPageChange(0); $("#backToNav").show(); $("#b2b").show(); }); $("#backToNav").click(function() { reset(); }); $(".btn_list").click(function() { reset(); }); /*Reset to the contact navigation view*/ function reset() { //Hide the div $("#wiznet").hide(); $("#b2b").hide(); $("#backToNav").hide(); //Reset the data list $('#example').dataTable().fnPageChange(0); $("#contactNav").show(); } }); </script> <!-- //Modal body --> </div> <div class="modal-footer"> <a href="#" class="btn_list" data-dismiss="modal">Close</a> </div> </div> </div> </div> <!-- //Modal Contact Us--> <!-- Modal Terms Conditions --> <div class="modal fade" id="TermsConditions" tabindex="-1" role="dialog" aria-hidden="true"> <div class="modal-dialog" style="width:800px;top:50%;margin-top:-275px"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> <h4 class="modal-title">Terms & Conditions</h4> </div> <div class="modal-body scrolly" style="height:480px"> <!-- Modal body --> <div class="policy_wrap"> <!-- explain box --> <div>All users will be required to read and accept <strong>"Terms & Conditions"</strong> when registering the c-Dance system. By accepting, User agrees to the terms under <strong>"Terms & Conditions."</strong> Thank you for your cooperation. </div> <!-- //explain box --> <h5>Important Notice!</h5> <div>(Summary of Terms & Conditions for B2B Workplace)</div> <dl class="basic"> <dt>1. Confidentiality</dt> <dd>You acknowledge that the information contained in this B2B Workplace is confidential and some of it may constitute a trade secret.<br> You shall not disclose the information (or any part thereof) to any person, without Samsung Semiconductor's consent.</dd> <dt>2. Password Management</dt> <dd>Samsung Semiconductor shall provide you with a user ID & password to allow you to access B2B Workplace.<br> You are responsible for the confidentiality of this information and you must not disclose them to others.</dd> </dl> <h5>Terms & Conditions</h5> <dl class="basic"> <dt>1. Acceptance</dt> <dd>We, Samsung Semiconductor, will allow you to access and use c-Dance on the following terms.</dd> <dt>2. Authorized Use</dt> <dd>You are permitted to view and download, at your risk, the content of c-Dance for your organization's legitimate dealings with us. You must not alter any data downloaded from c-Dance without our prior consent.</dd> <dt>3. Access and Security</dt> <dd class="ullist"> <ul> <li><span class="no">1)</span> Samsung Semiconductor shall provide you with a user identity and pass code ("Security Codes") to allow you to access c-Dance. You are responsible for the confidentiality of these Security Codes and you must not disclose them to others. You will notify Samsung Semiconductor immediately on becoming aware of any known or suspected unauthorized access of Security Codes. </li> <li><span class="no">2)</span> Samsung Semiconductor may change the Security Codes from time to time and will notify you accordingly.</li> <li><span class="no">3)</span> Samsung Semiconductor recommends you to take all appropriate preventative measures before downloading information from c-Dance. You undertake to take all appropriate protective measures to prevent the introduction of viruses by you to c-Dance. </li> <li><span class="no">4)</span> You must not modify, contaminate, violate or attempt to violate the security of c-Dance.</li> <li><span class="no">5)</span> We need your help in making sure your personal information is correct in our systems. Please notify us of changes to your name, address, title, phone number or email address. Our site allow you to make these updates yourself via the program's User Information page.</li> <li><span class="no">6)</span> If Samsung Semiconductor suspects there is a risk to security of c-Dance, it shall be entitled to suspend or restrict access until it is satisfied the risk has ceased.</li> </ul> </dd> <dt>4. Trademark</dt> <dd class="ullist"> <ul> <li><span class="no">1)</span> Samsung Semiconductor cannot guarante and does not warrant and represent that the inforation contained in this C-Dance is accurate, complete or up to date and any reliance on such information is at your own risk. </li> <li><span class="no">2)</span> While C-Dance's objective is to make the site accessible 24 hours per day, 7 days per week, C-Dance may make the site, or any portion therof, unavailable from time to time for any reason including, without limitation, routine maintenance. C-Dance does not guarantee the availability or access of the site, or of any feature, database, or service available through the site, or that access will be uninterrupted or error free. C-Dance reserves the right to interrupt, limit, change, suspend or discontinue the site operations from time to time, with or without notice.</li> <li><span class="no">3)</span> Subject to clause 5.1, Samsung Semiconductor shall not be liable in contract or tort for <ul> <li><span class="no">(i)</span> Loss of profits;</li> <li><span class="no">(ii)</span> Loss of revenue; </li> <li><span class="no">(iii)</span> Loss of goodwill or reputation;</li> <li><span class="no">(iv)</span> Loss of contracts; or </li> <li><span class="no">(v)</span> For any special, indirect or consequential loss howsever arising due to your company's use of or in connection with this C-Dance.</li> </ul></li> <li><span class="no">4)</span> Save as expressly set out in these terms, Samsung Semiconductor excludes all warraties, terms and conditions implied by statute or law, to the fullest extent allowed by law.</li> </ul> </dd> <dt>6. Linking</dt> <dd>By linking with other websites or material Samsung Semiconductor does not have any liability for any links or the material arising from them.</dd> <dt>7. Confidentiality</dt> <dd class="ullist"> <ul> <li><span class="no">1)</span> You acknowledge that the information contained in this c-Dance is confidential and some of it may constitute a trade secret. You shall not disclose the information (or any part thereof) to any person, without Samsung Semiconductor's consent, except to those persons engaged by you organization who need to know the confidential information for the purposes of exercising your commercial relations with us and who have been advised of the confidential nature of such information. </li> <li><span class="no">2)</span> Transactions conducted between Company and Samsung Semiconductor via c-Dance will be governed by the mutually executed Purchase Agreement or similar document which applies to the products or services which are the subject of such transactions. If no Purchase Agreement or similar document applies, such transactions will be governed by Samsung's then-current standard purchase order terms and conditions. Our relationship will continue to be governed by the Corporate Non-Disclosure Agreement(CNDA) which has been agreed to by the Parties we have executed. All pricing, availability, ordering and similar information disclosed via c-Dance will be deemed the "Confidential Information" of the discloser under such CNDA., regardless of whether the CNDA's marking or other similar requirements are met. We each agree to execute documents and take all other actions reasonably necessary to effectuate the intent of the CNDA. </li> <li><span class="no">3)</span> You shall promptly inform Samsung Semiconductor if it becomes aware of any breach or suspected breach of confidence regarding confidential information by any person or body and shall give Samsung Semiconductor all reasonable assistance in connection with any proceedings which Samsung Semiconductor may instigate as a result of any such breach. These obligations of confidence shall not apply to information that is or falls into the public domain other than by breach of these obligations. </li> </ul> </dd> <dt>8. Personal Data and Privacy</dt> <dd class="ullist"> <ul> <li><span class="no">1)</span> In general we gather information about our users collectively, such as what areas users visit most frequently. We use that data in the aggregate to help us determine what is beneficial to our users. </li> <li><span class="no">2)</span> We may store some information on the visitor's computer in the form of a "cookie" or other similar file. <br> These files allow Samsung Semiconductor to tailor the Site to reflect our visitor's, customer's and subscriber's preferences. Most browsers allow users to exercise control over such files on their computers by erasing them, blocking them, or notifying the user when such a file is stored. </li> <li><span class="no">3)</span> Any Personal Data (as defined under the Data Protection Act 1998) that you provide will be held on a database and may be shared with companies in the Samsung Group in Korea and internationally for marketing purposes and if necessary for performing any of its agreements with your company. You should be aware that some of these companies are incorporated in countries that do not have adequate or any data protection laws. <br>If you do not wish your details to be used for marketing purposes, please write to: e-Business TF, 19th Fl. Joonang-Ilbo Bldg. 7, Soonhwa-Dong, Chung-Ku Seoul, Korea 100-759 </li> </ul> </dd> <dt>9. Termination and Effect of Termination</dt> <dd class="ullist"> <ul> <li><span class="no">1)</span> Samsung Semiconductor may terminate your use of this c-Dance without notice. </li> <li><span class="no">2)</span> Termination shall not affect rights or remedies accruing up to the date of termination under these Terms or at law nor any provision which is either expressly or by implication to continue after termination, which shall include but not be limited to paragraphs 5, 7, 8, and 10. </li> </ul> </dd> <dt>10. General</dt> <dd class="ullist"> <ul> <li><span class="no">1)</span> These Terms constitute the entire agreement between Samsung Semiconductor and you in respect of your use of c-Dance.<br> SAMSUNG SEMICONDUCTOR SHALL NOTIFY YOU OF CHANGES TO THESE TERMS BY CONSPICUOUSLY POSTING SUCH CHANGES ON THIS c-Dance. YOUR CONTINUED USE OF THE C-DANCE AFTER NOTICE OF CHANGE SHALL BE DEEMED ACCEPTANCE OF THE CHANGE. </li> <li><span class="no">2)</span> Your right to use c-Dance is personal to you and may not be carried out by another on your behalf without Samsung Semiconductor's prior written consent. </li> <li><span class="no">3)</span> A waiver by Samsung Semiconductor of a breach of any term or condition of the Terms shall not be deemed as a continuing waiver or a waiver of any subsequent breach or the same of any other provisions.</li> <li><span class="no">4)</span> The provisions of the Contracts (Rights of Third Parties) Act 1999 (or any analogous laws) shall not apply to these Terms. </li> <li><span class="no">5)</span> If a competent authority decides any part of these Terms cannot be enforced that particular part will not apply but the rest will.</li> <li><span class="no">6)</span> Samsung Semiconductor controls and operates this Site from its headquarters in the Republic of Korea and makes no representation that the Contents are appropriate or will be available for use in other locations. If you use this Site from outside the Republic of Korea, you are entirely responsible for compliance with applicable local laws, including but not limited to the export and import regulations of other countries in relation to the Contents. </li> <li><span class="no">7)</span> All disputes arising out of or in connection with the Terms shall be referred to be finally resolved by arbitration in Seoul, Korea and shall be decided pursuant to the Rules of Conciliation and Arbitration of the International Chamber of Commerce.</li> <li><span class="no">8)</span> The Laws of the Republic of Korea shall govern the Terms. Any decision rendered by the arbitration panel shall be binding, final and conclusive upon the parties, and a judgment may be enforced in any court of competent jurisdiction.</li> </ul> </dd> </dl> </div> <!-- //Modal body --> </div> <div class="modal-footer"> <a href="#" class="btn_list" data-dismiss="modal">Close</a> </div> </div> </div> </div> <!-- //Modal Terms Conditions--> <!-- Modal Browser & Platform Support --> <div class="modal fade" id="BrowserPlatformSupport" tabindex="-1" role="dialog" aria-hidden="true"> <div class="modal-dialog" style="width:800px;top:50%;margin-top:-200px"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> <h4 class="modal-title">Browser & Platform Support</h4> </div> <div class="modal-body"> <!-- Modal body --> <div class="bpsupport_list"> <img alt="" src="/b2b/images/b2b_common/imgBrowsers.png"> <h4>Browsers</h4> <ul> <li>IE6,7,8 for Windows</li> <li>Latest version of Safari, chrome, Firefox, Opera for Windows</li> <li>Latest version of Firefox for Linux</li> <li>Latest version of Safari for Mac OS</li> </ul> </div> <div class="bpsupport_list"> <img alt="" src="/b2b/images/b2b_common/imgPlatform.png"> <h4>Platform</h4> <ul> <li>Windows 7, Windows Vista(including 64 bit editions),Windows XP(SP2,SP3,Tablet PC Edition SP2 and SP3)</li> <li>Mac OS X 10.4.11 or Mac OS X 10.5.4, 10.5.5, and 10.6</li> <li>Fedora 8 and later, Ubuntu 7.10 and later, OpenSuse 10.3 and later</li> <li>xterm should be present on the system</li> </ul> </div> <!-- //Modal body --> </div> <div class="modal-footer"> <a href="#" class="btn_list" data-dismiss="modal">Close</a> </div> </div> </div> </div> <!-- //Modal Browser & Platform Support --> <!-- Modal Privacy Policy --> <div class="modal fade" id="PrivacyPolicy" tabindex="-1" role="dialog" aria-hidden="true"> <div class="modal-dialog" style="width:800px;top:50%;margin-top:-275px"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> <h4 class="modal-title">Privacy Policy</h4> </div> <div class="modal-body scrolly" style="height:480px"> <!-- Modal body --> <div class="policy_wrap"> <script> $(function() { var policyArea = $('.select2').select2(); policyArea.val("KR").trigger("change"); selectPolicyArea("KR"); }); function selectPolicyArea(area) { var html = ""; var data = ""; var path = ""; $("#policyTerm").empty(); if (area == "KR") { data = "[Version 2.9] 2024/07/23 ~ "; data = "[Version 2.9] The Current Version : 2024/07/23"; path = "/identity/privacy/privacyManKr_v_2_9.html"; html = '<option value="/identity/privacy/privacyManKr_v_2_9.html">'+data+'</a>'; $("#policyTerm").append(html); data = "[Version 2.8] 2023/10/24 ~ 2024/07/22"; html = '<option value="/identity/privacy/privacyManKr_v_2_8.html">'+data+'</a>'; $("#policyTerm").append(html); data = "[Version 2.7] 2020/08/04 ~ 2023/10/24"; html = '<option value="/identity/privacy/privacyManKr_v_2_7.html">'+data+'</a>'; $("#policyTerm").append(html); data = "[Version 2.6] 2020/07/21 ~ 2020/08/03"; html = '<option value="/identity/privacy/privacyManKr_v_2_6.html">'+data+'</a>'; $("#policyTerm").append(html); data = "[Version 2.5] 2016/12/09 ~ 2020/07/20"; html = '<option value="/identity/privacy/privacyManKr_v_2_5.html">'+data+'</a>'; $("#policyTerm").append(html); data = "[Version 2.3] 2016/09/23 ~ 2016/12/08"; html = '<option value="/identity/privacy/privacyManKr_v_2_3.html">'+data+'</a>'; $("#policyTerm").append(html); data = "[Version 2.2] 2015/08/18 ~ 2016/09/22"; html = '<option value="/identity/privacy/privacyManKr_v_2_2.html">'+data+'</a>'; $("#policyTerm").append(html); data = "[Version 2.1] 2015/01/13 ~ 2015/08/17"; html = '<option value="/identity/privacy/privacyManKr_v_2_1.html">'+data+'</a>'; $("#policyTerm").append(html); } else if(area == "EU"){ data = "[Version 1.0] 2018/05/22 ~ "; data = "[Version 1.0] The Current Version : 2018/05/22"; path = "/identity/privacy/privacyManEu_v_1_0.html"; html = '<option value="/identity/privacy/privacyManEu_v_1_0.html">'+data+'</a>'; $("#policyTerm").append(html); } else if(area == "CN"){ data = "[Version 1.0] 2021/11/01 ~ "; data = "[Version 1.0] The Current Version : 2021/11/01"; path = "/identity/privacy/privacyManCn_v_1_0.html"; html = '<option value="/identity/privacy/privacyManCn_v_1_0.html">'+data+'</a>'; $("#policyTerm").append(html); } else if(area == "US"){ data = "[Version 1.0] 2022/01/03 ~ "; data = "[Version 1.0] The Current Version : 2022/01/03"; path = "/identity/privacy/privacyManUs_v_1_0.html"; html = '<option value="/identity/privacy/privacyManUs_v_1_0.html">'+data+'</a>'; $("#policyTerm").append(html); } else { data = "[Version 1.2] 2015/12/23 ~ "; data = "[Version 1.2] The Current Version : 2015/12/23"; path = "/identity/privacy/privacyManIn_v_1_2.html"; html = '<option value="/identity/privacy/privacyManIn_v_1_2.html">'+data+'</a>'; $("#policyTerm").append(html); data = "[Version 1.1] 2015/08/18 ~ 2015/12/22"; html = '<option value="/identity/privacy/privacyManIn_v_1_1.html">'+data+'</a>'; $("#policyTerm").append(html); data = "[Version 1.0] 2015/01/13 ~ 2015/08/17"; html = '<option value="/identity/privacy/privacyManIn_v_1_0.html">'+data+'</a>'; $("#policyTerm").append(html); } selectPolicyTerm(path); } function selectPolicyTerm(path) { var fullPath = "/b2b" + path; $("#ifrm1").attr("src", fullPath); } </script> <!-- group manage --> <div class="policy_manage"> <select class="form-control select2" style="width:200px;" id="policyArea" value="KR" onChange="javascript:selectPolicyArea(this.value);"> <option value="US">U.S. Version</option> <option value="KR">Korean Version</option> <option value="IN">Oversea Version</option> <option value="EU">Europe Version</option> <option value="CN">China Version</option> </select> <select class="form-control select2" style="width:400px;" id="policyTerm" onChange="javascript:selectPolicyTerm(this.value);"> </select> </div> <iframe src='/b2b/identity/privacy/privacyOrgKr_v_2_5.html' name="ifrm1" id="ifrm1" width="100%" height="530" scrolling="auto"></iframe> </div> <!-- //Modal body --> </div> <div class="modal-footer"> <a href="#" class="btn_list" data-dismiss="modal">Close</a> </div> </div> </div> </div> <!-- //Modal Privacy Policy --> <!-- Modal Cookie Policy --> <div class="modal fade" id="CookiePolicy" tabindex="-1" role="dialog" aria-hidden="true"> <div class="modal-dialog" style="width:800px;top:50%;margin-top:-275px"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> <h4 class="modal-title">Cookie Policy</h4> </div> <div class="modal-body scrolly" style="height:480px; padding:0;"> <iframe src="/b2b/identity/privacy/cookiePolicy_v_1_0.html" name="ifrmCookie" id="ifrmCookie" width="100%" height="100%" frameborder="0" framespacing="0" marginheight="0" marginwidth="0" scrolling="no"></iframe> </div> <div class="modal-footer"> <a href="#" class="btn_list" data-dismiss="modal">Close</a> </div> </div> </div> </div> <!-- //Modal Cookie Policy --> <!-- Modal forgot password --> <div class="modal fade" id="forgotPassword" tabindex="-1" role="dialog" aria-hidden="true"> <div class="modal-dialog" style="width:600px;top:50%;margin-top:-145px"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> <h4 class="modal-title">Forgot Password</h4> </div> <div class="modal-body"> <!-- Modal body --> <ul class="forgot_text"> <li>Please input your registered ID and Email address you used in registration, and then click "Save." </li> <li>If you do not receive a system-generated password within a several minutes,<br> please contact us at b2bi.sec@samsung.com with your ID and other basic information.</li> </ul> <table class="form_table"> <colgroup> <col width="20%" /> <col width="*"/> </colgroup> <tr> <th>User ID</th> <td><input type="text" id="cUserId" name="cUserId"></td> </tr> <tr> <th>Email Address</th> <td><input type="text" id="cEmailAddress" name="cEmailAddress"></td> </tr> </table> <!-- //Modal body --> </div> <div class="modal-footer"> <a href="javascript:downloadUserGuide('FORGOT_PASSWORD_GUIDE');" class="btn_list pull-left">Guide</a> <a href="javascript:doChangePassword();" class="btn_list_rd">Save</a> <a href="javascript:doResetPassword();" class="btn_list">Reset</a> <a href="#" class="btn_list" data-dismiss="modal">Close</a> </div> </div> </div> </div> <!-- //Modal forgot password --> <!-- Modal forgot password --> <div class="modal fade" id="forgotPasswordMessage" tabindex="-1" role="dialog" aria-hidden="true"> <div class="modal-dialog" style="width:500px;height:300px;top:50%;margin-top:-145px"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> <h4 class="modal-title">Change Password</h4> </div> <div class="modal-body"> <!-- Modal body --> <table class="form_table"> <tbody> <tr id="resultMessage"></tr> </tbody> </table> <!-- //Modal body --> </div> <div class="modal-footer"> <a href="#" class="btn_list" data-dismiss="modal">Close</a> </div> </div> </div> </div> <!-- //Modal forgot password --> <!-- //content --> </div> <!-- footer --> <footer id="footer" class="footer_main"> <div class="footer_wrap"> <img src="../../images/neob2b/logo_samsung.png" class="logo_samsung" alt="SAMSUNG" /> <div class="support">This website is best viewed using Microsoft Internet Explorer 10.0 or higher, and/or latest version of Google Chrome and Mozila Firefox browsers.</div> <ul class="footer_util"> <li><a href="#" data-toggle="modal" data-target="#TermsConditions">Terms & Conditions</a></li> <!-- <li><a href="#" data-toggle="modal" data-target="#BrowserPlatformSupport">Browser & Platform Support</a></li> --> <li><a href="#" data-toggle="modal" data-target="#PrivacyPolicy">Privacy Policy</a></li> <li><a href="#" data-toggle="modal" data-target="#CookiePolicy" id="CookiePolicyClick">Cookie Policy</a></li> </ul> <div class="copy">Copyright © 1995-2019 SAMSUNG All Rights Reserved.</div> </div> </footer> <!-- //footer --> </body> </html>