// JavaScript Document

function nwin(x, y, page)
{
 sx = screen.availWidth;
 sy = screen.availHeight;
 px = (sx/2)-(x/2);
 py = (sy/2)-(y/2);
 window.open(page,'','scrollbars=auto,top='+py+',left='+px+',width='+x+',height='+y+', status=no');
 return;
}

function addfav()
{
 window.external.AddFavorite('http://www.militaria.bielsko.com.pl/index2.php','Militaria Bielsko');
 return;
}

function homepg()
{
 document.body.style.behavior='url(#default#homepage)';
 document.body.setHomePage('http://www.militaria.bielsko.com.pl/index2.php');
 return;
}