
// ************************
// by begen 2009/03/09
// This code is used by a radio button
// ************************

function OnLoadValue()
{
// at the Default,  disagree radio buttom is selected
document.forms[0].Agreement[0].checked = false;
document.forms[0].Agreement[1].checked = true;
ChoiceDisagree();}

// Agree --> go to the inquirymail.htm form / disagree --> go to the home page 
// for inquirydecision.html
function CheckAndRelocate()
{

if (document.forms[0].Agreement[0].checked == true)
    { location="https://www.sh-k.com/shk/newinquirymail.htm";} 
else
    { location="http://www.sh-k.com";}
}

// for inquirytourokudecision.html
function CheckAndRelocateTouroku()
{

if (document.forms[0].Agreement[0].checked == true)
    { location="https://www.sh-k.com/shk/ContactMail.htm";} 
else
    { location="http://www.sh-k.com";}
}
// ********* BUTTONS ***********************  
function ChoiceAgree()
{
// visible/invisible button for link
var hrf= document.getElementById('Submit1');
hrf.style.display="inline"; 
var hrf= document.getElementById('Submit2');
hrf.style.display="none"; 
}

function ChoiceDisagree()
{
// visible/invisible button for link
var hrf= document.getElementById('Submit1');
hrf.style.display="none"; 
var hrf= document.getElementById('Submit2');
hrf.style.display="inline"; 
}

