var propertyemail = "info@axfgroup.com.au";
var propertycc = "";
var fundsemail = "info@axfgroup.com.au";
var fundscc = "huan@axfgroup.com.au";
var buildingemail = "info@axfgroup.com.au";
var buildingcc = "";
var platinumemail = "info@axfgroup.com.au";
var platinumcc = "snowe@axfgroup.com.au";

function propertylink(){
    window.name = "property";
}

function fundslink(){
    window.name = "funds";
}

function buildinglink(){
    window.name = "building";
}

function platinumlink(){
    window.name = "platinum";
}

function setchecked() {
document.getElementsByName( 'interestedin')[0].onclick = showproperty;
document.getElementsByName( 'interestedin')[1].onclick = showfunds;
document.getElementsByName( 'interestedin')[2].onclick = showbuilding;
document.getElementsByName( 'interestedin')[3].onclick = showplatinum;
var linktype = window.name;

if ( linktype == "property" )
    {
        document.getElementById('property_investing').style.display = "block";
        document.getElementsByName('interestedin')[0].checked = true;
        document.getElementById('sendto').value = propertyemail;
        document.getElementById('ccto').value = propertycc;
        document.getElementById('interestedout').value = "Property Investing";  
    }
if ( linktype == "funds" )
    {
        document.getElementById('funds_investing').style.display = "block";
        document.getElementsByName('interestedin')[1].checked = true;
        document.getElementById('sendto').value = fundsemail;
        document.getElementById('ccto').value = fundscc;
        document.getElementById('interestedout').value = "Funds Investing"; 
    }
if ( linktype == "building" )
    {
        document.getElementById('building_products').style.display = "block";
        document.getElementsByName('interestedin')[2].checked = true;
        document.getElementById('sendto').value = buildingemail;
        document.getElementById('ccto').value = buildingcc; 
        document.getElementById('interestedout').value = "Building Products";   
    }   
if ( linktype == "platinum" )
    {
        document.getElementById('platinum').style.display = "block";
        document.getElementsByName('interestedin')[3].checked = true;
        document.getElementById('sendto').value = platinumemail;
        document.getElementById('ccto').value = platinumcc;
        document.getElementById('interestedout').value = "Platinum Investor";
    }       
}

function showproperty() {
    document.getElementById('property_investing').style.display = "block";
    document.getElementById('funds_investing').style.display = "none";
    document.getElementById('building_products').style.display = "none";
    document.getElementById('platinum').style.display = "none";
    document.getElementById('sendto').value = propertyemail;
    document.getElementById('ccto').value = propertycc;
    document.getElementById('interestedout').value = "Property Investing";  
}

function showfunds() {
    document.getElementById('property_investing').style.display = "none";
    document.getElementById('funds_investing').style.display = "block";
    document.getElementById('building_products').style.display = "none";
    document.getElementById('platinum').style.display = "none";
    document.getElementById('sendto').value = fundsemail;
    document.getElementById('ccto').value = fundscc;
    document.getElementById('interestedout').value = "Funds Investing"; 
}

function showbuilding() {
    document.getElementById('property_investing').style.display = "none";
    document.getElementById('funds_investing').style.display = "none";
    document.getElementById('building_products').style.display = "block";
    document.getElementById('platinum').style.display = "none";
    document.getElementById('sendto').value = buildingemail;
    document.getElementById('ccto').value = buildingcc;
    document.getElementById('interestedout').value = "Building Products";   
}

function showplatinum() {
    document.getElementById('property_investing').style.display = "none";
    document.getElementById('funds_investing').style.display = "none";
    document.getElementById('building_products').style.display = "none";
    document.getElementById('platinum').style.display = "block";
    document.getElementById('sendto').value = platinumemail;
    document.getElementById('ccto').value = platinumcc;
    document.getElementById('interestedout').value = "Platinum Investor";
}
