




/* -------- Ukrywanie pola zlozZamowienie -------- */
function onclickZlozZamowienie(){

		document.getElementById('hiddenZlozZamowienie').removeAttribute("disabled");
		document.getElementById('formularzZamowienia').submit();
}


/* --------- wybór sposobu wypełnienia danych do zamówienia -------- */
/* ----------------------------------------------------------------- */
function onclickKupujeLogowanie(){

		document.getElementById('aaction').value = 'panelLogowania';
		document.getElementById('ffrom').removeAttribute("disabled");
		document.getElementById('formularzKupowanieWyborSpos').submit();
}
function onclickKupujeBezLogowania(){

		document.getElementById('aaction').value = 'zlozZamowienie';
		document.getElementById('kkupujeBezLogowania').removeAttribute("disabled");
		document.getElementById('formularzKupowanieWyborSpos').submit();
}







/* ------------- target _blank ------------------ */
/* ---------------------------------------------- */
function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName('a');
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute('href') &&
       anchor.getAttribute('rel') == 'blank')
     anchor.target = '_blank';
 }
}
window.onload = externalLinks;
