/* 
 * Version 0.1
 * Note currently the g3frontend.xml in the colop\blue layout gets loaded.
 *
 */

/* Gets called if the Iframe is fully loaded*/
function ieIFrameLoaded(url){
    request = new Ajax.Request(url, {
        method: 'get',
        onSuccess: ieIFrameUpdate
    });
}
function ieIFrameUpdate(response){
    //@ASNOTE We expect a JSONString, but there are problems with setting the Response header,
    //therefore we have to manuelly construct the JSOPN Object
    var json_result=response.responseText;
    var result= json_result.evalJSON(true);
    $('thecreator').setStyle(result);
    $('wait').hide();
    $('thecreator').show();
}


