// JavaScript Document
<!--
var commonwin;	
function popup_reg(url, width, height, scroll) {
if(commonwin) commonwin.close();
var s=(scroll)? scroll:"no";
commonwin=window.open(url,"CommonWin","menubar=no,width="+width+",height="+height+",toolbar=no, scrollbars="+s);
}

function goPrint(dId)
{
var a = window.open('','','scrollbars=yes,width=600,height=800');
a.document.open("text/html");
a.document.write('<html><head><link rel="stylesheet" href="print.css" /><style type="text/css">#frame{background-image:none;background-color:#FFFFFF;}</style></head><body style="padding-left:20px;background-image:none;background-color:#FFFFFF;">');
a.document.write(document.getElementById(dId).innerHTML);
a.document.write('<br /><br /><DIV id="print-foot">The text comes from www.prostamol.pl website. <br />Strona:</DIV>');
a.document.write('</body></html>');
a.document.close();
a.print();

}
function sizeChange(id,size)
{
	document.getElementById(id).style['fontSize'] = size + 'px';
	document.getElementById(id).style['line-height'] = size + 4 + 'px';
}

function classChange(id)
{
	document.getElementById('as1').className ='as1';
	document.getElementById('as2').className ='as2';
	document.getElementById('as3').className ='as3';
	document.getElementById(id).className=id+' a';	
}

-->

