function doSearch (f) {
	if (f.q.value.length == 0) {
		alert('Introduceţi un text pentru căutare');
		return false;
	}
	return true;
}
function popup (url, w, h) {
	pictures = window.open(url, 'popup', 'width='+ w +',height='+ h +',top='+ (screen.height/2-h/2) +',left='+ (screen.width/2-w/2) +',toolbar=0,resizable=1');
}
