function openWnd(url,w,h,isImg){
	w=(w?w:850);
	h=(h?h:700);
	var wnd=window.open(isImg?"":url,"win","width="+w+",height="+h+",scrollbars=1,toolbar=0,menubar=0,history=0,resizable=1");
	if (isImg){
		wnd.document.write("<html><head><title></title></head><body style='margin:0;padding:0;text-align:center'><table style='width:100%;height:100%;text-align:center'><tr><td><img src='"+url+"' alt='' /></tr></td></table></body></html>")
	}
	wnd.window.focus();
	return false;
}
function Trim(s) {return s.replace(/^\s*/,"").replace(/\s*$/,"");} // удаление пробелов слева и справа
