var newwindow;
function popup(url, height, width)
{
//	newwindow=window.open(url,'name','height='+height+',width='+width+',resizable=true,scrollbars=true,toolbar=false,menubar=false,status=false');
	newwindow=window.open(url,'name','height='+height+',width='+width+',resizable=yes,scrollbars=yes');
	newwindow.focus();
}

// otwarcie nowego okna z obrazkiem
function imgPreViewInPopUp(sImgURL) {
     window.open( "imgPreViewPopUp.php?"+sImgURL, "",
     "resizable=1,HEIGHT=250,WIDTH=250,scrollbars=yes");
   }

