function openNewWindow(sURL, sName, iWidth, iHeight, bResizable, bScrollbars) {
	var iTop  = (screen.height - iHeight) / 2 ;
	var iLeft = (screen.width  - iWidth) / 2 ;
	
	var sOptions = "toolbar=no, status=no, menubar=no" ;
	    sOptions += ",width=" + iWidth ; 
	    sOptions += ",height=" + iHeight ;
	    sOptions += ",resizable="  + (bResizable  ? "yes" : "no") ;
	    sOptions += ",scrollbars=" + (bScrollbars ? "yes" : "no") ;
	    sOptions += ",left=" + iLeft ;
	    sOptions += ",top=" + iTop ;
	
	var oWindow = window.open(sURL, sName, sOptions)
	oWindow.focus();
	
	return oWindow ;
}

function openInnerUrl(url,id,bpopup) {
	if(bpopup==2) {
		window.open(url,"", "width=800,height=600,resizable=1,scrollbars=yes,toolbar=no,status=no,menubar=no");
		return false;
	}
	return true;
}

function openNews(path,id,item) {
    var url = path+"/news.php?id="+id+"&item="+item;
	window.open(url,"", "width=660,height=540,resizable=1,scrollbars=yes,toolbar=no,status=no,menubar=no");
	return false;
}

function openExternalUrl(url,bpopup) {
	return true;
}

function openDocument(docR_Id) {
	return true;
}

function preview(id,lng) {
	window.open("/_backOffice/preview.php?id="+id,"", "width=800,height=600,resizable=1,scrollbars=yes,toolbar=no,status=no,menubar=no");
}

function fsearch() {
	var searchText = document.searchform.searchtext.value;
	if(searchText.length<2) return;
    document.searchform.submit();
}

