﻿var locapgid;
function initpage(pgid){
    //if (locapgid=='location'){ GUnload(); }
    loadajaxloader();
    xmlHttp = GetXmlHttpObject();
    if (xmlHttp==null){
        Unloadajaxloader();
        alert ("Your browser does not support AJAX!");
        return;
    } 
    var url = 'http://www.caribbeancuisine.co.uk/inc_ajaxscripts/frm_pageloader.aspx?mod=initpage&pgid=' + pgid;
    locapgid = pgid;
    xmlHttp.open("POST",url,true);
    xmlHttp.onreadystatechange = initpageresponse;
    xmlHttp.send('');
}
//================================================================
function initpageresponse(){ 
    if (xmlHttp.readyState==4){
        document.getElementById("initpagecontent").innerHTML = xmlHttp.responseText;
        Unloadajaxloader();
        if (locapgid=='location'){ loadlocation(); }
        if (locapgid=='order'){
        if (totalamount=='0.00'){document.getElementById("vieworderlnk").innerHTML = 'View Order ( &pound 0.00 )';
        }else{document.getElementById("vieworderlnk").innerHTML = 'View Order ( &pound ' + totalamount.toFixed(2) + ' )';}
        if (totalamount >= 15.00){
        document.getElementById("q_housestreet").style.display='';
        document.getElementById("q_housenum").style.display='';
        document.getElementById("q_postalcode").style.display='';}
        }
    }
}
//================================================================
function loadlocation(){
    if (document.getElementById('maplocation')!==null){
        document.onload = mapload();
        //document.onunload = GUnload();
    }
}
