function popup(url,w,h,scroll,type) { //v2.0
	// versijai > 1.4177
	if (!w) {
		w = 300;
	}
	if (!h) {
		h = 100
	}
  winName='popupas';
	
	if (typeof(popupas)=='object')
	{ 
		popupas.close();
	}
	scrl =  (scroll!=0) ? 'yes' : 'no';
	if (type=='image')
	{
		features = "toolbar=no,location=no,status=no,menubar=no,scrollbars="+scrl+",resizable=no,width="+w+",height="+h;
		popupas = window.open('/popup.php?image='+url,winName,features);
	}
	else {
		features = "toolbar=no,location=no,status=no,menubar=no,scrollbars="+scrl+",resizable=yes,width="+w+",height="+h;
		popupas = window.open(url,winName,features);
	}
	popupas.focus();
}