function deliverActiveX(content)
{
	document.write(content);
}

function imgPopupUrl(url, width, height) {
	var x = "TITLEBAR=0,top=100,left=100,RESIZE=0, WIDTH=" + width + ", HEIGHT=" + height + ", SCROLLBARS=1";
	window.open(url, "Kalkulacja", x);
}


function $(ident){
	return document.getElementById(ident);
}

function wyslijFormularz(portal_id){

		try {
			var cel = $('cel_kredytowania').value;
			var waluta = $('waluta_kredytu').value;
			var kwota = $('kwota_kredytu').value;
			var portal = $('portal').value;


		}
		catch (e) {
		}
		if (portal_id == '000')
			bankier.openForm(8,  'cel='+cel+'&waluta='+waluta+'&kwota='+kwota);
		else {
			var url = 'https://www.pkobp.pl/inc_formularz_kontaktowy_kredyt_hipoteczny.php?waluta=' + waluta + '&cel=' + cel + '&kwota=' + kwota + '&portal=' + portal_id;
			imgPopupUrl(url, '480', '600');
		}

}

function wyslijFormularz_produkt(portal_id){
		if (portal_id == '000')
			bankier.openForm(8);
		else {
			var url = 'https://www.pkobp.pl/inc_formularz_kontaktowy_kredyt_hipoteczny.php?portal='+ portal_id;
			imgPopupUrl(url, '480', '600');
		}

}

function ukryjCalyFormularz(){

	$('formularz_kontaktowy_all').style.display='none';

	//odkrycie selektow
	$('kwota_kredytu').style.visibility='visible';
	$('waluta_kredytu').style.visibility='visible';
	$('cel_kredytowania').style.visibility='visible';
}