
function redirectToPartnerSite() {
        
        var element = document.getElementById("products_services_option");
        var url = new String(element.options[element.selectedIndex].value);
        if (url.length > 0) {
                window.location = element.options[element.selectedIndex].value;
        }
}

function print_links() {

	links_element = document.getElementById("kbcfp_links");
	if ( links_element == null ) {
		setTimeout(print_links, 500);
		return;
	}
	
	links_element.innerHTML = '<form id="products_services" name="products_services" action="" method="post">'+
                '<div>'+
                    'Online products &amp; services</div>'+
                '<select id="products_services_option" style="width:120px;">'+
                    '<option value="">Please select...</option>'+
                    '<option value="https://www.kbcesop.com">ESOP Prices</option>'+
                    '<option value="http://credit-products.kbcfp.com">Structured Credit</option>'+
                    '<option value="https://www.kbcsecmar.com">Secondary Market</option>'+
                '</select>'+
                '<input style="width:30px" class="submitbutton" type="submit" value="Go" onclick="javascript:redirectToPartnerSite();return false;"/>'+
            '</form>'
}

print_links();

