//<!--
//	новое окно
function system_window(path,w,h,pos,face)
	{
	if ( pos==1 )
		{ posx=screen.width/2-w/2; posy=screen.height/2-h/2; }
	else
		{ posx=0; posy=0; }
	if ( face==1 )
		{ newWindow=window.open(path,"site","left="+posx+", top="+posy+", width="+w+"px, height="+h+"px, toolbar=1, location=1, directories=1, status=1, menubar=1, scrollbars=1, resizable=1"); }
	else
		{ newWindow=window.open(path,"site","left="+posx+", top="+posy+", width="+w+"px, height="+h+"px, toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=1, resizable=1"); }
	//	newWindow=window.showModelessDialog(url,"Dialog Box Arguments","unadorned:yes; dialogHeight: "+h+"px; dialogWidth: "+w+"px; dialogTop: "+posy+"px; dialogLeft: "+posx+"px; edge: Raised; help: No; resizable: Yes; status: No; scroll: No"); 
	newWindow.focus();
//	return false;
	}
function popupCatalogue(str) {
	window.open(str,'nome','scrollbars=yes,resizable=no,width=518,height=450,status=no,location=no,toolbar=no');
}
//-->