popitup = function(url,nume,latime,inaltime){
	leftPadding=(screen.width-latime)/2;
	topPadding=(screen.height-inaltime)/2;
	//if(!scrol)scrol=0;
	//alert(url+" "+name+" "+width+" "+height+" "+leftPadding+" "+topPadding);
	day = new Date();
	id = day.getTime();
	window.open(url, id, 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width='+latime+',height='+inaltime+',left = ' + leftPadding + ',top = ' + topPadding);
	//window.open(url,name, "'toolbar=0,scrollbars=1,statusbar=1,menubar=0,resizable=0,width="+width+",height="+height+",left="+leftPadding+",top="+topPadding+"'");

	};
