function openPopUp(path,name,width,height){
	if (window[name])
	if(! window[name].closed) window[name].close();
	window[name] = 	window.open(path,name,'menubar=no,scrollbars=yes,resizable=yes,width='+width+',height='+height);
	window[name].focus();
	}
//---------------------------------------------------------------------------------------------


