function headlineGedOpenDocument(IdGed, IdDoc, IntVersion, DocClassName, IdTab, IdTabComp)
{
	var sUrl = "../components/ged/tools/dlg/dlg_opendocument.jsp?IdTab=" + IdTab;

	if( DocClassName == "com.mediapps.netportal.components.ged.newsDocument.NewsDocument" )
       var sUrl = "../components/ged/tools/dlg/dlg_opennewsDocument.jsp?IdTab=" + IdTab;

	sUrl += "&IdTabComp=" + IdTabComp;
	sUrl += "&IdDoc=" + IdDoc;
	sUrl += "&Download=False";
	sUrl += "&IdGed=" + IdGed;
	sUrl += "&IntVersion=" + IntVersion;

	openCenterWnd(sUrl,"GEDWindowOpenDocument",800,600,true,true);
}

