function zoom( plik, xxx, yyy, id)
{o = null;
 if (window.screen) {
  aw = screen.availWidth;
  ah = screen.availHeight;}
 else {
  aw = 640;
  ah = 480;
 }
 if (xxx>screen.availWidth) xxx = screen.availWidth;
 if (yyy>screen.availHeight) yyy = screen.availHeight;
u="width="+xxx+",height="+yyy+",left=30,top=30,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no";
 o = window.open( plik, 'zoom', u);
}


    function bookmarkme(url, title)
		
    {
    	//alert(url);
    	//alert(title);
    	if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) 
    	{
    	window.external.AddFavorite (url,title);
    	}
    	else
    	{
    	var msg = "Don't forget to bookmark us!";
    	if(navigator.appName == "Netscape") msg += "  (CTRL-D)";
    	alert(msg);
       }
    }


function openpopup(popurl){
var winpops=window.open(popurl,"","width=400,height=590")
}