
var localroot = 'http://www.mobilemoney.com/'
//var localroot = 'http://192.168.0.140/'

function refreshCats(){
    var mainCatID = document.getElementById('category').value;
    var subCatID = '';
    
    ajaxCall(localroot + 'horoscopes/vipfunctions.asp?action=writesubcats&language=nl&category=' + mainCatID,'subcategories', localroot + 'horoscopes/images/ajax-loader.gif');
    setTimeout("refreshVIPS()", 500);   
}

function refreshVIPS(){
    var mainCatID = document.getElementById('category').value;
    var subCatID = '';
    var genderLetter = document.getElementById('hor_gender1').value;
    
    subCatID = document.getElementById('subcategory').value;
    ajaxCall(localroot + 'horoscopes/vipfunctions.asp?action=writevips&language=nl&category=' + mainCatID + '&subcategory=' + subCatID + '&gender=' + genderLetter,'vips', localroot + 'horoscopes/images/ajax-loader.gif');
}
