//---------------------------------------------------------------------------------
var d=document;
var eForm=d.all?d.all:d.getElementsByTagName('*');
var mailing_tekst='Podaj swój e-mail';
//---------------------------------------------------------------------------------
function chck()
{
 if (window.parent.length!=0) open("http://"+location.hostname,"_top");
}
//---------------------------------------------------------------------------------
function getId(x)
{
  with (d) return b=getElementById?getElementById(x):all?all[x]:layers[x];
}
//---------------------------------------------------------------------------------
function mailing_onClick() {
  if (eForm.email.value==mailing_tekst) eForm.email.value='';
}
//---------------------------------------------------------------------------------
function mailing_onBlur() {
  if (eForm.email.value.length==0) eForm.email.value=mailing_tekst;
}
//---------------------------------------------------------------------------------
function mailing_submit() {
  if ((eForm.email.value!=mailing_tekst)&&(eForm.email.value.length>0)) eForm.mailing.submit();
}
//---------------------------------------------------------------------------------
function id_onMouseOver(id,styl) {
  getId(id).className=styl;
}
//---------------------------------------------------------------------------------
function id_onMouseOut(id,styl) {
  getId(id).className=styl;
}
//---------------------------------------------------------------------------------