/*
 * $Id: preview_options.js,v 1.5 2007/11/15 10:46:35 gzafirovski Exp $
 * creative preview options
 * (c) Digital Advertising and Marketing Ltd 2000-2007
*/


function change_url(creative_id) {
    var testurlinput=document.getElementById('test_url');
    preview_iframe_src = tabs_http_base + 'creative/test_advert_main.phtml?config_mode=false&creative_id=' + creative_id + '&override_url=' + testurlinput.value;
    var myiframe = document.getElementById('browseriframe_test');
    myiframe.src = preview_iframe_src + "&rnd=" + Math.random();
}

function refresh_main() {
    main.location.href = main.location.href;
}

function swap_creative(test_popup) { 
    var selectele=document.getElementById('creative-select');
    var swap_creative_id = selectele.options[selectele.selectedIndex].value;
    if (test_popup == 'true') {
	document.location = tabs_http_base + 'creative/test_advert.phtml?creative_id=' + swap_creative_id;
    } else {
	document.location = tabs_http_base + 'creative/delivery.phtml?creative_id=' + swap_creative_id + '&tab=' + current_tab;
    }
}


function swap_creative_maximise(test_popup) { 
    var selectele=document.getElementById('creative-select-max');
    var swap_creative_id = selectele.options[selectele.selectedIndex].value;
    if (test_popup == 'true') {
	document.location = tabs_http_base + 'creative/test_advert.phtml?creative_id=' + swap_creative_id;
    } else {
	document.location = tabs_http_base + 'creative/delivery.phtml?creative_id=' + swap_creative_id + '&tab=' + current_tab + '&max=1';
    }
}

