Help
RSS
API
Feed
Maltego
Contact
Domain > www.euroinfo.me
×
Welcome!
Right click nodes and scroll the mouse to navigate the graph.
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2019-07-25
5.189.128.102
(
ClassC
)
2025-01-20
79.142.73.145
(
ClassC
)
Port 80
HTTP/1.1 200 OKDate: Mon, 20 Jan 2025 06:20:48 GMTServer: ApacheExpires: Sun, 19 Nov 1978 05:00:00 GMTCache-Control: no-cache, must-revalidateX-Content-Type-Options: nosniffContent-Language: shX-Frame-Options: SAMEORIGINX-Generator: Drupal 7 (http://drupal.org)Link: http://www.euroinfo.me/>; relcanonical,http://www.euroinfo.me/>; relshortlinkUpgrade: h2,h2cConnection: UpgradeTransfer-Encoding: chunkedContent-Type: text/html; charsetutf-8 /*** Note: This file may contain artifacts of previous malicious infection.* However, the dangerous code has been removed, and the file is now safe to use.*//** * @file * Pathologic text filter for Drupal. * * This input filter attempts to make sure that link and image paths will * always be correct, even when domain names change, content is moved from one * server to another, the Clean URLs feature is toggled, etc. *//** * Implements hook_filter_info(). */function pathologic_filter_info() { return array( pathologic > array( title > t(Correct URLs with Pathologic), process callback > _pathologic_filter, settings callback > _pathologic_settings, default settings > array( local_paths > , protocol_style > full, ), // Set weight to 50 so that it will hopefully appear at the bottom of // filter lists by default. 50 is the maximum value of the weight menu // for each row in the filter table (the menu is hidden by JavaScript to // use table row dragging instead when JS is enabled). weight > 50, ) );}/** * Settings callback for Pathologic. */function _pathologic_settings($form, &$form_state, $filter, $format, $defaults, $filters) { return array( reminder > array( #type > item, #title > t(In most cases, Pathologic should be the em>last/em> filter in the “Filter processing order” list.), #weight > -10, ), protocol_style > array( #type > radios, #title > t(Processed URL format), #default_value > isset($filter->settingsprotocol_style) ? $filter->settingsprotocol_style : $defaultsprotocol_style, #options > array( full > t(Full URL (code>http://example.com/foo/bar/code>)), proto-rel > t(Protocol relative URL (code>//example.com/foo/bar/code>)), path > t(Path relative to server root (code>/foo/bar/code>)), ), #description > t(The em>Full URL/em> option is best for stopping broken images and links in syndicated content (such as in RSS feeds), but will likely lead to problems if your site is accessible by both HTTP and HTTPS. Paths output with the em>Protocol relative URL/em> option will avoid such problems, but feed readers and other software not using up-to-date standards may be confused by the paths. The em>Path relative to server root/em> option will avoid problems with sites accessible by both HTTP and HTTPS with no compatibility concerns, but will absolutely not fix broken images and links in syndicated content.), #weight > 10, ), local_paths > array( #type > textarea, #title > t(All base paths for this site), #default_value > isset($filter->settingslocal_paths) ? $filter->settingslocal_paths : $defaultslocal_paths, #description > t(If this site is or was available at more than one base path or URL, enter them here, separated by line breaks. For example, if this site is live at code>http://example.com//code> but has a staging version at code>http://dev.example.org/staging//code>, you would enter both those URLs here. If confused, please read a href!docs>Pathologic’s documentation/a> for more information about this option and what it affects., array(!docs > http://drupal.org/node/257026)), #weight > 20, ), );}/** * Pathologic filter callback. * * Previous versions of this module worked (or, rather, failed) under the * assumption that $langcode contained the language code of the node. Sadly, * this isnt the case. * @see http://drupal.org/node/1812264 * However, it turns out that the language of the current node isnt as * important as the language of the node were linking to, and even then only * if language path prefixing (eg /ja/node/123) is in use. REMEMBER THIS IN THE * FUTURE, ALBRIGHT. * * The below code uses the @ operator before parse_url() calls because in PHP * 5.3.2 and earlier, parse_url() causes a warning of parsing fails. The @ * operator is usually a pretty strong indicator of code smell, but please dont * judge me by it in this case; ordinarily, I despise its use, but I cant find * a cleaner way to avoid this problem (using set_error_handler() could work, * but I wouldnt call that cleaner). Fortunately, Drupal 8 will require at * least PHP 5.3.5, so this mess doesnt have to spread into the D8 branch of * Pathologic. * @see https://drupal.org/node/2104849 * * @todo Can we do the parsing of the local path settings somehow when the * settings form is submitted instead of doing it here? */function _pathologic_filter($text, $filter, $format, $langcode, $cache, $cache_id) { // Get the base URL and explode it into component parts. We add these parts // to the exploded local paths settings later. global $base_url; $base_url_parts @parse_url($base_url . /); // Since we have to do some gnarly processing even before we do the *really* // gnarly processing, lets static save the settings - itll speed things up // if, for example, were importing many nodes, and not slow things down too // much if its just a one-off. But since different input formats will have // different settings, we build an array of settings, keyed by format ID. $cached_settings &drupal_static(__FUNCTION__, array()); if (!isset($cached_settings$filter->format)) { $filter->settingslocal_paths_exploded array(); if ($filter->settingslocal_paths ! ) { // Build an array of the exploded local paths for this formats settings. // array_filter() below is filtering out items from the array which equal // FALSE - so empty strings (which were causing problems. // @see http://drupal.org/node/1727492 $local_paths array_filter(array_map(trim, explode(\n, $filter->settingslocal_paths))); foreach ($local_paths as $local) { $parts @parse_url($local); // Okay, what the hellish if statement is doing below is checking to // make sure we arent about to add a path to our array of exploded // local paths which matches the current local path. We consider it // not a match, if… // @todo: This is pretty horrible. Can this be simplified? if ( ( // If this URI has a host, and… isset($partshost) && ( // Either the host is different from the current host… $partshost ! $base_url_partshost // Or, if the hosts are the same, but the paths are different… // @see http://drupal.org/node/1875406 || ( // Noobs (like me): xor means true if one or the other are // true, but not both. (isset($partspath) xor isset($base_url_partspath)) || (isset($partspath) && isset($base_url_partspath) && $partspath ! $base_url_partspath) ) ) ) || // Or… ( // The URI doesnt have a host… !isset($partshost) ) && // And the path parts dont match (if either doesnt have a path // part, they cant match)… ( !isset($partspath) || !isset($base_url_partspath) || $partspath ! $base_url_partspath ) ) { // Add it to the list. $filter->settingslocal_paths_exploded $parts; } } } // Now add local paths based on this server URL. $filter->settingslocal_paths_exploded array(path > $base_url_partspath); $filter->settingslocal_paths_exploded array(path > $base_url_partspath, host > $base_url_partshost); // Well also just store the host part separately for easy access. $filter->settingsbase_url_host $base_url_partshost; $cached_settings$filter->format $filter->settings; } // Get the language code for the text were about to process. $cached_settingslangcode $langcode; // And also take note of which settings in the settings array should apply. $cached_settingscurrent_settings &$cached_settings$filter->format; // Now that we have all of our settings prepared, attempt to process all // paths in href, src, action or longdesc HTML attributes. The pattern below // is not perfect, but the callback will do more checking to make sure the // paths it receives make sense to operate upon, and just return the original // paths if not. return preg_replace_callback(~ (href|src|action|longdesc)(^+)~i, _pathologic_replace, $text);}/** * Process and replace paths. preg_replace_callback() callback. */function _pathologic_replace($matches) { // Get the base path. global $base_path; // Get the settings for the filter. Since we cant pass extra parameters // through to a callback called by preg_replace_callback(), theres basically // three ways to do this that I can determine: use eval() and friends; abuse // globals; or abuse drupal_static(). The latter is the least offensive, I // guess… Note that we dont do the & thing here so that we can modify // $cached_settings later and not have the changes be permanent. $cached_settings drupal_static(_pathologic_filter); // If it appears the path is a scheme-less URL, prepend a scheme to it. // parse_url() cannot properly parse scheme-less URLs. Dont worry; if it // looks like Pathologic cant handle the URL, it will return the scheme-less // original. // @see https://drupal.org/node/1617944 // @see https://drupal.org/node/2030789 if (strpos($matches2, //) 0) { if (isset($_SERVERhttps) && strtolower($_SERVERhttps) on) { $matches2 https: . $matches2; } else { $matches2 http: . $matches2; } } // Now parse the URL after reverting HTML character encoding. // @see http://drupal.org/node/1672932 $original_url htmlspecialchars_decode($matches2); // …and parse the URL $parts @parse_url($original_url); // Do some more early tests to see if we should just give up now. if ( // If parse_url() failed, give up. $parts FALSE || ( // If theres a scheme part and it doesnt look useful, bail out. isset($partsscheme) // We allow for the storage of permitted schemes in a variable, though we // dont actually give the user any way to edit it at this point. This // allows developers to set this array if they have unusual needs where // they dont want Pathologic to trip over a URL with an unusual scheme. // @see http://drupal.org/node/1834308 // files and internal are for Path Filter compatibility. && !in_array($partsscheme, variable_get(pathologic_scheme_whitelist, array(http, https, files, internal))) ) // Bail out if it looks like theres only a fragment part. || (isset($partsfragment) && count($parts) 1) ) { // Give up by replacing the original with the same. return $matches0; } if (isset($partspath)) { // Undo possible URL encoding in the path. // @see http://drupal.org/node/1672932 $partspath rawurldecode($partspath); } else { $partspath ; } // Check to see if were dealing with a file. // @todo Should we still try to do path correction on these files too? if (isset($partsscheme) && $partsscheme files) { // Path Filter files: support. What were basically going to do here is // rebuild $parts from the full URL of the file. $new_parts @parse_url(file_create_url(file_default_scheme() . :// . $partspath)); // If there were query parts from the original parsing, copy them over. if (!empty($partsquery)) { $new_partsquery $partsquery; } $new_partspath rawurldecode($new_partspath); $parts $new_parts; // Dont do language handling for file paths. $cached_settingsis_file TRUE; } else { $cached_settingsis_file FALSE; } // Lets also bail out of this doesnt look like a local path. $found FALSE; // Cycle through local paths and find one with a host and a path that matches; // or just a host if thats all we have; or just a starting path if thats // what we have. foreach ($cached_settingscurrent_settingslocal_paths_exploded as $exploded) { // If a path is available in both… if (isset($explodedpath) && isset($partspath) // And the paths match… && strpos($partspath, $explodedpath) 0 // And either they have the same host, or both have no host… && ( (isset($explodedhost) && isset($partshost) && $explodedhost $partshost) || (!isset($explodedhost) && !isset($partshost)) ) ) { // Remove the shared path from the path. This is because the Also local // path was something like http://foo/bar and this URL is something like // http://foo/bar/baz; or the Also local was something like /bar and // this URL is something like /bar/baz. And we only care about the /baz // part. $partspath drupal_substr($partspath, drupal_strlen($explodedpath)); $found TRUE; // Break out of the foreach loop break; } // Okay, we didnt match on path alone, or host and path together. Can we // match on just host? Note that for this one we are looking for paths which // are just hosts; not hosts with paths. elseif ((isset($partshost) && !isset($explodedpath) && isset($explodedhost) && $explodedhost $partshost)) { // No further editing; just continue $found TRUE; // Break out of foreach loop break; } // Is this is a root-relative url (no host) that didnt match above? // Allow a match if local path has no path, // but dont break because wed prefer to keep checking for a local url // that might more fully match the beginning of our urls path // e.g.: if our url is /foo/bar well mark this as a match for // http://example.com but want to keep searching and would prefer a match // to http://example.com/foo if thats configured as a local path elseif (!isset($partshost) && (!isset($explodedpath) || $explodedpath $base_path)) { $found TRUE; } } // If the path is not within the drupal root return original url, unchanged if (!$found) { return $matches0; } // Okay, format the URL. // If theres still a slash lingering at the start of the path, chop it off. $partspath ltrim($partspath,/); // Examine the query part of the URL. Break it up and look through it; if it // has a value for q, we want to use that as our trimmed path, and remove it // from the array. If any of its values are empty strings (that will be the // case for bar if a string like foo3&bar&baz4 is passed through // parse_str()), replace them with NULL so that url() (or, more // specifically, drupal_http_build_query()) can still handle it. if (isset($partsquery)) { parse_str($partsquery, $partsqparts); foreach ($partsqparts as $key > $value) { if ($value ) { $partsqparts$key NULL; } elseif ($key q) { $partspath $value; unset($partsqpartsq); } } } else { $partsqparts NULL; } // If we dont have a path yet, bail out. if (!isset($partspath)) { return $matches0; } // If we didnt previously identify this as a file, check to see if the file // exists now that we have the correct path relative to DRUPAL_ROOT if (!$cached_settingsis_file) { $cached_settingsis_file !empty($partspath) && is_file(DRUPAL_ROOT . /. $partspath); } // Okay, deal with language stuff. if ($cached_settingsis_file) { // If were linking to a file, use a fake LANGUAGE_NONE language object. // Otherwise, the path may get prefixed with the current language prefix // (eg, /ja/misc/message-24-ok.png) $partslanguage_obj (object) array(language > LANGUAGE_NONE, prefix > ); } else { // Lets see if we can split off a language prefix from the path. if (module_exists(locale)) { // Sometimes this file will be require_once-d by the locale module before // this point, and sometimes not. We require_once it ourselves to be sure. require_once DRUPAL_ROOT . /includes/language.inc; list($language_obj, $path) language_url_split_prefix($partspath, language_list()); if ($language_obj) { $partspath $path; $partslanguage_obj $language_obj; } } } // If we get to this point and $partspath is now an empty string (which // will be the case if the path was originally just /), then we // want to link to front>. if ($partspath ) { $partspath front>; } // Build the parameters we will send to url() $url_params array( path > $partspath, options > array( query > $partsqparts, fragment > isset($partsfragment) ? $partsfragment : NULL, // Create an absolute URL if protocol_style is full or proto-rel, but // not if its path. absolute > $cached_settingscurrent_settingsprotocol_style ! path, // If we seem to have found a language for the path, pass it along to // url(). Otherwise, ignore the language parameter. language > isset($partslanguage_obj) ? $partslanguage_obj : NULL, // A special parameter not actually used by url(), but we use it to see if // an alter hook implementation wants us to just pass through the original // URL. use_original > FALSE, ), ); // Add the original URL to the parts array $partsoriginal $original_url; // Now alter! // @see http://drupal.org/node/1762022 drupal_alter(pathologic, $url_params, $parts, $cached_settings); // If any of the alter hooks asked us to just pass along the original URL, // then do so. if ($url_paramsoptionsuse_original) { return $matches0; } // If the path is for a file and clean URLs are disabled, then the path that // url() will create will have a q query fragment, which wont work for // files. To avoid that, we use this trick to temporarily turn clean URLs on. // This is horrible, but it seems to be the sanest way to do this. // @see http://drupal.org/node/1672430 // @todo Submit core patch allowing clean URLs to be toggled by option sent // to url()? if (!empty($cached_settingsis_file)) { $cached_settingsorig_clean_url !empty($GLOBALSconfclean_url); if (!$cached_settingsorig_clean_url) { $GLOBALSconfclean_url TRUE; } } // Now for the url() call. Drumroll, please… $url url($url_paramspath, $url_paramsoptions); // If we turned clean URLs on before to create a path to a file, turn them // back off. if ($cached_settingsis_file && !$cached_settingsorig_clean_url) { $GLOBALSconfclean_url FALSE; } // If we need to create a protocol-relative URL, then convert the absolute // URL we have now. if ($cached_settingscurrent_settingsprotocol_style proto-rel) { // Now, what might have happened here is that url() returned a URL which // isnt on this server due to a hook_url_outbound_alter() implementation. // We dont want to convert the URL in that case. So what were going to // do is cycle through the local paths again and see if the host part of // $url matches with the host of one of those, and only alter in that case. $url_parts @parse_url($url); if (!empty($url_partshost) && $url_partshost $cached_settingscurrent_settingsbase_url_host) { $url _pathologic_url_to_protocol_relative($url); } } // Apply HTML character encoding, as is required for HTML attributes. // @see http://drupal.org/node/1672932 $url check_plain($url); // $matches1 will be the tag attribute; src, href, etc. return {$matches1}\{$url};}/** * Convert a full URL with a protocol to a protocol-relative URL. * * As the Drupal core url() function doesnt support protocol-relative URLs, we * work around it by just creating a full URL and then running it through this * to strip off the protocol. * * Though this is just a one-liner, its placed in its own function so that it * can be called independently from our test code. */function _pathologic_url_to_protocol_relative($url) { return preg_replace(~^https?://~, //, $url);}!DOCTYPE html PUBLIC -//W3C//DTD XHTML+RDFa 1.0//EN http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd>!--if lt IE 7> html classno-js lt-ie9 lt-ie8 lt-ie7 xmlnshttp://www.w3.org/1999/xhtml xml:langsh versionXHTML+RDFa 1.0 dirltr xmlns:oghttp://ogp.me/ns# xmlns:articlehttp://ogp.me/ns/article# xmlns:bookhttp://ogp.me/ns/book# xmlns:profilehttp://ogp.me/ns/profile# xmlns:videohttp://ogp.me/ns/video# xmlns:producthttp://ogp.me/ns/product# xmlns:contenthttp://purl.org/rss/1.0/modules/content/ xmlns:dchttp://purl.org/dc/terms/ xmlns:foafhttp://xmlns.com/foaf/0.1/ xmlns:rdfshttp://www.w3.org/2000/01/rdf-schema# xmlns:siochttp://rdfs.org/sioc/ns# xmlns:siocthttp://rdfs.org/sioc/types# xmlns:skoshttp://www.w3.org/2004/02/skos/core# xmlns:xsdhttp://www.w3.org/2001/XMLSchema#> !endif-->!--if IE 7> html classno-js lt-ie10 lt-ie9 lt-ie8 ie7 xmlnshttp://www.w3.org/1999/xhtml xml:langsh versionXHTML+RDFa 1.0 dirltr xmlns:oghttp://ogp.me/ns# xmlns:articlehttp://ogp.me/ns/article# xmlns:bookhttp://ogp.me/ns/book# xmlns:profilehttp://ogp.me/ns/profile# xmlns:videohttp://ogp.me/ns/video# xmlns:producthttp://ogp.me/ns/product# xmlns:contenthttp://purl.org/rss/1.0/modules/content/ xmlns:dchttp://purl.org/dc/terms/ xmlns:foafhttp://xmlns.com/foaf/0.1/ xmlns:rdfshttp://www.w3.org/2000/01/rdf-schema# xmlns:siochttp://rdfs.org/sioc/ns# xmlns:siocthttp://rdfs.org/sioc/types# xmlns:skoshttp://www.w3.org/2004/02/skos/core# xmlns:xsdhttp://www.w3.org/2001/XMLSchema#> !endif-->!--if IE 8> html classno-js lt-ie10 lt-ie9 ie8 xmlnshttp://www.w3.org/1999/xhtml xml:langsh versionXHTML+RDFa 1.0 dirltr xmlns:oghttp://ogp.me/ns# xmlns:articlehttp://ogp.me/ns/article# xmlns:bookhttp://ogp.me/ns/book# xmlns:profilehttp://ogp.me/ns/profile# xmlns:videohttp://ogp.me/ns/video# xmlns:producthttp://ogp.me/ns/product# xmlns:contenthttp://purl.org/rss/1.0/modules/content/ xmlns:dchttp://purl.org/dc/terms/ xmlns:foafhttp://xmlns.com/foaf/0.1/ xmlns:rdfshttp://www.w3.org/2000/01/rdf-schema# xmlns:siochttp://rdfs.org/sioc/ns# xmlns:siocthttp://rdfs.org/sioc/types# xmlns:skoshttp://www.w3.org/2004/02/skos/core# xmlns:xsdhttp://www.w3.org/2001/XMLSchema#> !endif-->!--if IE 9> html classno-js lt-ie10 ie9 xmlnshttp://www.w3.org/1999/xhtml xml:langsh versionXHTML+RDFa 1.0 dirltr xmlns:oghttp://ogp.me/ns# xmlns:articlehttp://ogp.me/ns/article# xmlns:bookhttp://ogp.me/ns/book# xmlns:profilehttp://ogp.me/ns/profile# xmlns:videohttp://ogp.me/ns/video# xmlns:producthttp://ogp.me/ns/product# xmlns:contenthttp://purl.org/rss/1.0/modules/content/ xmlns:dchttp://purl.org/dc/terms/ xmlns:foafhttp://xmlns.com/foaf/0.1/ xmlns:rdfshttp://www.w3.org/2000/01/rdf-schema# xmlns:siochttp://rdfs.org/sioc/ns# xmlns:siocthttp://rdfs.org/sioc/types# xmlns:skoshttp://www.w3.org/2004/02/skos/core# xmlns:xsdhttp://www.w3.org/2001/XMLSchema#> !endif-->!--if gt IE 9>!--> html classno-js xmlnshttp://www.w3.org/1999/xhtml xml:langsh versionXHTML+RDFa 1.0 dirltr xmlns:oghttp://ogp.me/ns# xmlns:articlehttp://ogp.me/ns/article# xmlns:bookhttp://ogp.me/ns/book# xmlns:profilehttp://ogp.me/ns/profile# xmlns:videohttp://ogp.me/ns/video# xmlns:producthttp://ogp.me/ns/product# xmlns:contenthttp://purl.org/rss/1.0/modules/content/ xmlns:dchttp://purl.org/dc/terms/ xmlns:foafhttp://xmlns.com/foaf/0.1/ xmlns:rdfshttp://www.w3.org/2000/01/rdf-schema# xmlns:siochttp://rdfs.org/sioc/ns# xmlns:siocthttp://rdfs.org/sioc/types# xmlns:skoshttp://www.w3.org/2004/02/skos/core# xmlns:xsdhttp://www.w3.org/2001/XMLSchema#> !--!endif-->head profilehttp://www.w3.org/1999/xhtml/vocab> !-- no-js --> script typetext/javascript>(function(H){H.classNameH.className.replace(/\bno-js\b/,js)})(document.documentElement)/script> !-- X-UA-Compatible --> meta http-equivX-UA-Compatible contentIEedge,chrome1 /> meta http-equivContent-Type contenttext/html; charsetutf-8 />link relshortcut icon hrefhttp://www.euroinfo.me/sites/euroinfo.me/themes/euroinfo/favicon.ico typeimage/vnd.microsoft.icon />meta namegenerator contentDrupal 7 (http://drupal.org) />link relcanonical hrefhttp://www.euroinfo.me/ />link relshortlink hrefhttp://www.euroinfo.me/ />meta propertyog:site_name contentEuroinfo CG />meta propertyog:type contentwebsite />meta propertyog:url contenthttp://www.euroinfo.me/ />meta propertyog:title contentEuroinfo CG />meta propertyog:description contentEvropski centar za informacije i inovacije Crne Gore /> title>Euroinfo CG | Evropski centar za informacije i inovacije Crne Gore/title> link hrefhttp://fonts.googleapis.com/css?familyOpen+Sans:400,600,700&subsetlatin,latin-ext relstylesheet typetext/css> style typetext/css mediaall>@import url(http://www.euroinfo.me/modules/system/system.base.css?pfpmk1);@import url(http://www.euroinfo.me/modules/system/system.menus.css?pfpmk1);@import url(http://www.euroinfo.me/modules/system/system.messages.css?pfpmk1);@import url(http://www.euroinfo.me/modules/system/system.theme.css?pfpmk1);/style>style typetext/css mediaall>@import url(http://www.euroinfo.me/sites/euroinfo.me/modules/views_slideshow/views_slideshow.css?pfpmk1);/style>style typetext/css mediaall>@import url(http://www.euroinfo.me/sites/all/modules/calendar/css/calendar_multiday.css?pfpmk1);@import url(http://www.euroinfo.me/modules/comment/comment.css?pfpmk1);@import url(http://www.euroinfo.me/sites/all/modules/date/date_api/date.css?pfpmk1);@import url(http://www.euroinfo.me/sites/all/modules/date/date_popup/themes/datepicker.1.7.css?pfpmk1);@import url(http://www.euroinfo.me/sites/all/modules/date/date_repeat_field/date_repeat_field.css?pfpmk1);@import url(http://www.euroinfo.me/modules/field/theme/field.css?pfpmk1);@import url(http://www.euroinfo.me/modules/node/node.css?pfpmk1);@import url(http://www.euroinfo.me/modules/poll/poll.css?pfpmk1);@import url(http://www.euroinfo.me/modules/search/search.css?pfpmk1);@import url(http://www.euroinfo.me/modules/user/user.css?pfpmk1);@import url(http://www.euroinfo.me/sites/euroinfo.me/modules/views/css/views.css?pfpmk1);@import url(http://www.euroinfo.me/sites/euroinfo.me/modules/ckeditor/css/ckeditor.css?pfpmk1);/style>style typetext/css mediaall>@import url(http://www.euroinfo.me/sites/all/modules/bild_menu_api/css/om-lists.css?pfpmk1);@import url(http://www.euroinfo.me/sites/all/libraries/colorbox/epcg/colorbox.css?pfpmk1);@import url(http://www.euroinfo.me/sites/euroinfo.me/modules/ctools/css/ctools.css?pfpmk1);@import url(http://www.euroinfo.me/sites/euroinfo.me/modules/panels/css/panels.css?pfpmk1);@import url(http://www.euroinfo.me/sites/all/modules/video/css/video.css?pfpmk1);@import url(http://www.euroinfo.me/sites/euroinfo.me/themes/euroinfo/layouts/stacked/stacked.css?pfpmk1);@import url(http://www.euroinfo.me/sites/euroinfo.me/modules/views_slideshow/views_slideshow_controls_text.css?pfpmk1);@import url(http://www.euroinfo.me/sites/euroinfo.me/modules/views_slideshow/contrib/views_slideshow_cycle/views_slideshow_cycle.css?pfpmk1);@import url(http://www.euroinfo.me/sites/euroinfo.me/modules/quicktabs/css/quicktabs.css?pfpmk1);@import url(http://www.euroinfo.me/modules/locale/locale.css?pfpmk1);/style>!--if lt IE 10>style typetext/css mediaall>@import url(http://www.euroinfo.me/sites/euroinfo.me/files/ctools/css/98488e78c5360d94c615c0360877d4f2.css?pfpmk1);/style>!endif-->style typetext/css mediaall>@import url(http://www.euroinfo.me/sites/euroinfo.me/libraries/superfish/css/superfish.css?pfpmk1);/style>style typetext/css mediaall>@import url(http://www.euroinfo.me/sites/euroinfo.me/themes/euroinfo/css/global.css?pfpmk1);@import url(http://www.euroinfo.me/sites/euroinfo.me/themes/euroinfo/css/custom.css?pfpmk1);/style> !-- AddThis --> script typetext/javascript> var addthis_config { // data_track_addressbar: true, ui_language: bs, services_overlay:email, more, ui_click: true }; /script> script typetext/javascript srchttp://s7.addthis.com/js/250/addthis_widget.js#pubidra-50362a663023f6b0>/script> script typetext/javascript srchttp://www.euroinfo.me/sites/euroinfo.me/files/js/js_J1rtwNzMk13rhQO-5-4zl2aMiM2Hk2WjXqqNcoy0d6U.js>/script>script typetext/javascript srchttp://www.euroinfo.me/sites/euroinfo.me/files/js/js_02uGcyv1-im6cSoyQ1UvAwDT2RJAeNzU3mCSxI2TlUE.js>/script>script typetext/javascript srchttp://www.euroinfo.me/sites/euroinfo.me/files/js/js_R9UbiVw2xuTUI0GZoaqMDOdX0lrZtgX-ono8RVOUEVc.js>/script>script typetext/javascript srchttp://www.euroinfo.me/sites/euroinfo.me/files/js/js_wulgkYpZlgDEZROpBgNk1K26TVgG2UcKovbrjBNhqSI.js>/script>script typetext/javascript srchttp://www.euroinfo.me/sites/euroinfo.me/files/js/js_-jAMgttTdeojQWbHTJRfNfjSXnDjD5zCKb5N9m-SxVs.js>/script>script typetext/javascript>!--//-->!CDATA//>!--jQuery.extend(Drupal.settings, {basePath:\/,pathPrefix:,ajaxPageState:{theme:euroinfo,theme_token:XPBm5h-ZmHf-vdMQuCLjgNcaqe2Zf-sydwyZcR2yM-8,js:{sites\/euroinfo.me\/modules\/clientside_validation\/clientside_validation.ie8.js:1,sites\/euroinfo.me\/modules\/clientside_validation\/clientside_validation.js:1,sites\/all\/modules\/jquery_update\/replace\/jquery\/1.7\/jquery.min.js:1,misc\/jquery.once.js:1,misc\/drupal.js:1,sites\/euroinfo.me\/modules\/views_slideshow\/js\/views_slideshow.js:1,sites\/all\/modules\/jquery_update\/replace\/misc\/jquery.form.min.js:1,sites\/all\/modules\/jquery_update\/replace\/ui\/external\/jquery.cookie.js:1,misc\/ajax.js:1,sites\/all\/modules\/admin_menu\/admin_devel\/admin_devel.js:1,misc\/progress.js:1,public:\/\/languages\/sh_DW0JLvq0wvva5Dp10dN_6zZnfobf_B-Syjp5U2VI_mw.js:1,sites\/all\/modules\/bild_menu_api\/js\/custom.js:1,sites\/euroinfo.me\/libraries\/colorbox\/jquery.colorbox-min.js:1,sites\/all\/modules\/colorbox\/js\/colorbox.js:1,sites\/all\/modules\/colorbox\/js\/colorbox_load.js:1,sites\/all\/modules\/video\/js\/video.js:1,sites\/euroinfo.me\/modules\/select_with_style\/select_with_style\/select_with_style.js:1,sites\/euroinfo.me\/modules\/views\/js\/base.js:1,sites\/euroinfo.me\/modules\/quicktabs\/js\/quicktabs.js:1,sites\/euroinfo.me\/modules\/views\/js\/ajax_view.js:1,sites\/all\/libraries\/jquery.cycle\/jquery.cycle.all.min.js:1,sites\/euroinfo.me\/modules\/views_slideshow\/contrib\/views_slideshow_cycle\/js\/views_slideshow_cycle.js:1,sites\/all\/libraries\/json2\/json2.js:1,sites\/euroinfo.me\/modules\/clientside_validation\/jquery-validate\/jquery.validate.js:1,sites\/euroinfo.drupal-testing.bildhosting.com\/libraries\/superfish\/jquery.hoverIntent.minified.js:1,sites\/euroinfo.drupal-testing.bildhosting.com\/libraries\/superfish\/sfsmallscreen.js:1,sites\/euroinfo.drupal-testing.bildhosting.com\/libraries\/superfish\/supposition.js:1,sites\/euroinfo.drupal-testing.bildhosting.com\/libraries\/superfish\/superfish.js:1,sites\/euroinfo.drupal-testing.bildhosting.com\/libraries\/superfish\/supersubs.js:1,sites\/euroinfo.me\/modules\/superfish\/superfish.js:1,sites\/euroinfo.me\/themes\/euroinfo\/js\/jquery.fontscale.js:1,sites\/euroinfo.me\/themes\/euroinfo\/js\/jquery.svg-pietimer.js:1,sites\/euroinfo.me\/themes\/euroinfo\/js\/featured-slideshow-pietimer.js:1,sites\/euroinfo.me\/themes\/euroinfo\/js\/global.js:1},css:{modules\/system\/system.base.css:1,modules\/system\/system.menus.css:1,modules\/system\/system.messages.css:1,modules\/system\/system.theme.css:1,sites\/euroinfo.me\/modules\/views_slideshow\/views_slideshow.css:1,sites\/all\/modules\/calendar\/css\/calendar_multiday.css:1,modules\/comment\/comment.css:1,sites\/all\/modules\/date\/date_api\/date.css:1,sites\/all\/modules\/date\/date_popup\/themes\/datepicker.1.7.css:1,sites\/all\/modules\/date\/date_repeat_field\/date_repeat_field.css:1,modules\/field\/theme\/field.css:1,modules\/node\/node.css:1,modules\/poll\/poll.css:1,modules\/search\/search.css:1,modules\/user\/user.css:1,sites\/euroinfo.me\/modules\/views\/css\/views.css:1,sites\/euroinfo.me\/modules\/ckeditor\/css\/ckeditor.css:1,sites\/all\/modules\/bild_menu_api\/css\/om-lists.css:1,sites\/all\/libraries\/colorbox\/epcg\/colorbox.css:1,sites\/euroinfo.me\/modules\/ctools\/css\/ctools.css:1,sites\/euroinfo.me\/modules\/panels\/css\/panels.css:1,sites\/all\/modules\/video\/css\/video.css:1,sites\/euroinfo.me\/themes\/euroinfo\/layouts\/stacked\/stacked.css:1,sites\/euroinfo.me\/modules\/views_slideshow\/views_slideshow_controls_text.css:1,sites\/euroinfo.me\/modules\/views_slideshow\/contrib\/views_slideshow_cycle\/views_slideshow_cycle.css:1,sites\/euroinfo.me\/modules\/quicktabs\/css\/quicktabs.css:1,modules\/locale\/locale.css:1,public:\/\/ctools\/css\/98488e78c5360d94c615c0360877d4f2.css:1,sites\/euroinfo.me\/libraries\/superfish\/css\/superfish.css:1,sites\/euroinfo.me\/themes\/euroinfo\/css\/global.css:1,sites\/euroinfo.me\/themes\/euroinfo\/css\/custom.css:1}},colorbox:{opacity:0.85,current:{current} of {total},previous:\u00ab Prev,next:Next \u00bb,close:Close,maxWidth:98%,maxHeight:98%,fixed:true,mobiledetect:true,mobiledevicewidth:480px},viewsSlideshow:{front_page_featured_articles-panel_pane_1_1:{methods:{goToSlide:viewsSlideshowPager,viewsSlideshowSlideCounter,viewsSlideshowCycle,nextSlide:viewsSlideshowPager,viewsSlideshowSlideCounter,viewsSlideshowCycle,pause:viewsSlideshowControls,viewsSlideshowCycle,play:viewsSlideshowControls,viewsSlideshowCycle,previousSlide:viewsSlideshowPager,viewsSlideshowSlideCounter,viewsSlideshowCycle,transitionBegin:viewsSlideshowPager,viewsSlideshowSlideCounter,transitionEnd:},paused:0},multimedia_tabs-panel_pane_3_1:{methods:{goToSlide:viewsSlideshowPager,viewsSlideshowSlideCounter,viewsSlideshowCycle,nextSlide:viewsSlideshowPager,viewsSlideshowSlideCounter,viewsSlideshowCycle,pause:viewsSlideshowControls,viewsSlideshowCycle,play:viewsSlideshowControls,viewsSlideshowCycle,previousSlide:viewsSlideshowPager,viewsSlideshowSlideCounter,viewsSlideshowCycle,transitionBegin:viewsSlideshowPager,viewsSlideshowSlideCounter,transitionEnd:},paused:0},multimedia_tabs-panel_pane_1_1:{methods:{goToSlide:viewsSlideshowPager,viewsSlideshowSlideCounter,viewsSlideshowCycle,nextSlide:viewsSlideshowPager,viewsSlideshowSlideCounter,viewsSlideshowCycle,pause:viewsSlideshowControls,viewsSlideshowCycle,play:viewsSlideshowControls,viewsSlideshowCycle,previousSlide:viewsSlideshowPager,viewsSlideshowSlideCounter,viewsSlideshowCycle,transitionBegin:viewsSlideshowPager,viewsSlideshowSlideCounter,transitionEnd:},paused:0},multimedia_tabs-panel_pane_2_1:{methods:{goToSlide:viewsSlideshowPager,viewsSlideshowSlideCounter,viewsSlideshowCycle,nextSlide:viewsSlideshowPager,viewsSlideshowSlideCounter,viewsSlideshowCycle,pause:viewsSlideshowControls,viewsSlideshowCycle,play:viewsSlideshowControls,viewsSlideshowCycle,previousSlide:viewsSlideshowPager,viewsSlideshowSlideCounter,viewsSlideshowCycle,transitionBegin:viewsSlideshowPager,viewsSlideshowSlideCounter,transitionEnd:},paused:0}},viewsSlideshowPager:{front_page_featured_articles-panel_pane_1_1:{bottom:{type:viewsSlideshowPagerFields,master_pager:0}}},viewsSlideshowPagerFields:{front_page_featured_articles-panel_pane_1_1:{bottom:{activatePauseOnHover:0}}},viewsSlideshowCycle:{#views_slideshow_cycle_main_front_page_featured_articles-panel_pane_1_1:{num_divs:3,id_prefix:#views_slideshow_cycle_main_,div_prefix:#views_slideshow_cycle_div_,vss_id:front_page_featured_articles-panel_pane_1_1,effect:fade,transition_advanced:1,timeout:0,speed:700,delay:0,sync:1,random:0,pause:1,pause_on_click:1,play_on_hover:0,action_advanced:1,start_paused:0,remember_slide:0,remember_slide_days:1,pause_in_middle:0,pause_when_hidden:0,pause_when_hidden_type:full,amount_allowed_visible:,nowrap:0,pause_after_slideshow:0,fixed_height:1,items_per_slide:1,wait_for_image_load:1,wait_for_image_load_timeout:3000,cleartype:0,cleartypenobg:0,advanced_options:{\u0022pauseOnPagerHover\u0022:\u0022true\u0022,\u0022pause\u0022:\u0022true\u0022},advanced_options_choices:0,advanced_options_entry:},#views_slideshow_cycle_main_multimedia_tabs-panel_pane_3_1:{num_divs:4,id_prefix:#views_slideshow_cycle_main_,div_prefix:#views_slideshow_cycle_div_,vss_id:multimedia_tabs-panel_pane_3_1,effect:fade,transition_advanced:1,timeout:0,speed:500,delay:0,sync:1,random:0,pause:1,pause_on_click:1,play_on_hover:0,action_advanced:1,start_paused:0,remember_slide:0,remember_slide_days:1,pause_in_middle:0,pause_when_hidden:0,pause_when_hidden_type:full,amount_allowed_visible:,nowrap:0,pause_after_slideshow:0,fixed_height:1,items_per_slide:4,wait_for_image_load:1,wait_for_image_load_timeout:3000,cleartype:0,cleartypenobg:0,advanced_options:{},advanced_options_choices:0,advanced_options_entry:},#views_slideshow_cycle_main_multimedia_tabs-panel_pane_1_1:{num_divs:7,id_prefix:#views_slideshow_cycle_main_,div_prefix:#views_slideshow_cycle_div_,vss_id:multimedia_tabs-panel_pane_1_1,effect:fade,transition_advanced:1,timeout:0,speed:500,delay:0,sync:1,random:0,pause:1,pause_on_click:1,play_on_hover:0,action_advanced:1,start_paused:0,remember_slide:0,remember_slide_days:1,pause_in_middle:0,pause_when_hidden:0,pause_when_hidden_type:full,amount_allowed_visible:,nowrap:0,pause_after_slideshow:0,fixed_height:1,items_per_slide:4,wait_for_image_load:1,wait_for_image_load_timeout:3000,cleartype:0,cleartypenobg:0,advanced_options:{},advanced_options_choices:0,advanced_options_entry:},#views_slideshow_cycle_main_multimedia_tabs-panel_pane_2_1:{num_divs:3,id_prefix:#views_slideshow_cycle_main_,div_prefix:#views_slideshow_cycle_div_,vss_id:multimedia_tabs-panel_pane_2_1,effect:uncover,transition_advanced:1,timeout:0,speed:700,delay:0,sync:1,random:0,pause:1,pause_on_click:1,play_on_hover:0,action_advanced:1,start_paused:0,remember_slide:0,remember_slide_days:1,pause_in_middle:0,pause_when_hidden:0,pause_when_hidden_type:full,amount_allowed_visible:,nowrap:0,pause_after_slideshow:0,fixed_height:1,items_per_slide:1,wait_for_image_load:1,wait_for_image_load_timeout:3000,cleartype:0,cleartypenobg:0,advanced_options:{},advanced_options_choices:0,advanced_options_entry:}},viewsSlideshowControls:{multimedia_tabs-panel_pane_3_1:{bottom:{type:viewsSlideshowControlsText}},multimedia_tabs-panel_pane_1_1:{bottom:{type:viewsSlideshowControlsText}},multimedia_tabs-panel_pane_2_1:{bottom:{type:viewsSlideshowControlsText}}},quicktabs:{qt_multimedija:{name:multimedija,tabs:{vid:multimedia_tabs,display:panel_pane_3,args:,use_title:0,view_path:home,view_dom_id:1,ajax_args:,actual_args:},{vid:multimedia_tabs,display:panel_pane_1,args:,use_title:0,view_path:home,view_dom_id:2,ajax_args:,actual_args:},{vid:multimedia_tabs,display:panel_pane_2,args:,use_title:0,view_path:home,view_dom_id:3,ajax_args:,actual_args:},viewsSlideshowCycle:{#views_slideshow_cycle_main_multimedia_tabs-panel_pane_2_1:{num_divs:3,id_prefix:#views_slideshow_cycle_main_,div_prefix:#views_slideshow_cycle_div_,vss_id:multimedia_tabs-panel_pane_2_1,effect:uncover,transition_advanced:1,timeout:0,speed:700,delay:0,sync:1,random:0,pause:1,pause_on_click:1,play_on_hover:0,action_advanced:1,start_paused:0,remember_slide:0,remember_slide_days:1,pause_in_middle:0,pause_when_hidden:0,pause_when_hidden_type:full,amount_allowed_visible:,nowrap:0,pause_after_slideshow:0,fixed_height:1,items_per_slide:1,wait_for_image_load:1,wait_for_image_load_timeout:3000,cleartype:0,cleartypenobg:0,advanced_options:{},advanced_options_choices:0,advanced_options_entry:}}}},superfish:{1:{id:1,sf:{delay:200,animation:{opacity:show},speed:150,autoArrows:false,dropShadows:false,disableHI:false},plugins:{smallscreen:{mode:window_width,addSelected:false,menuClasses:false,hyperlinkClasses:false,title:Main menu},supposition:true,bgiframe:false,supersubs:{minWidth:12,maxWidth:27,extraWidth:1}}}},urlIsAjaxTrusted:{\/:true},clientsideValidation:{forms:{apachesolr-panels-search-block:{errorPlacement:3,general:{errorClass:error,wrapper:li,validateTabs:0,scrollTo:1,scrollSpeed:1000,disableHtml5Validation:1,validateOnBlur:1,validateOnBlurAlways:0,validateOnKeyUp:1,validateBeforeAjax:0,validateOnSubmit:1,showMessages:0,errorElement:label},rules:{apachesolr_panels_search_form:{maxlength:128,messages:{maxlength:Pretraga field has to have maximum 128 values.}}}}},general:{usexregxp:0,months:{January:1,Jan:1,February:2,Feb:2,March:3,Mar:3,April:4,Apr:4,May:5,June:6,Jun:6,July:7,Jul:7,August:8,Aug:8,September:9,Sep:9,October:10,Oct:10,November:11,Nov:11,December:12,Dec:12}},groups:{apachesolr-panels-search-block:{}}}});//-->!>/script>/head>body classhtml front not-logged-in no-sidebars page-home i18n-sh > div classmain-container> div idheader classheader> div classheader-top-container> div idheader_top classregion region-header-top clearfix> div idblock-superfish-1 classblock block-superfish main-menu> div classcontent> ul idsuperfish-1 classmenu sf-menu sf-main-menu sf-horizontal sf-style-none sf-total-items-7 sf-parent-items-6 sf-single-items-1>li idmenu-224-1 classactive-trail first odd sf-item-1 sf-depth-1 sf-no-children>a href/ classsf-depth-1 active>Početna/a>/li>li idmenu-814-1 classmiddle even sf-item-2 sf-depth-1 sf-total-children-2 sf-parent-children-0 sf-single-children-2 menuparent>a href/menu-dummy classprevent-click sf-depth-1 menuparent>O nama/a>ul>li idmenu-823-1 classfirst odd sf-item-1 sf-depth-2 sf-no-children>a href/o-een-mrezi classsf-depth-2>O EEN mreži/a>/li>li idmenu-826-1 classlast even sf-item-2 sf-depth-2 sf-no-children>a href/o-konzorcijumu classsf-depth-2>O konzorcijumu/a>/li>/ul>/li>li idmenu-835-1 classmiddle odd sf-item-3 sf-depth-1 sf-total-children-2 sf-parent-children-0 sf-single-children-2 menuparent>a href/menu-dummy classprevent-click sf-depth-1 menuparent>Aktuelnosti/a>ul>li idmenu-840-1 classfirst odd sf-item-1 sf-depth-2 sf-no-children>a href/vijesti classsf-depth-2>Vijesti/a>/li>li idmenu-841-1 classlast even sf-item-2 sf-depth-2 sf-no-children>a href/najave classsf-depth-2>Najave/a>/li>/ul>/li>li idmenu-857-1 classmiddle even sf-item-4 sf-depth-1 sf-total-children-5 sf-parent-children-0 sf-single-children-5 menuparent>a href/menu-dummy classprevent-click sf-depth-1 menuparent>Usluge/a>ul>li idmenu-2902-1 classfirst odd sf-item-1 sf-depth-2 sf-no-children>a href/ponude-za-saradnju classsf-depth-2>Ponude za saradnju/a>/li>li idmenu-2907-1 classmiddle even sf-item-2 sf-depth-2 sf-no-children>a href/node/add/bcd-forma classsf-depth-2>Prijavi preduzeće/a>/li>li idmenu-2903-1 classmiddle odd sf-item-3 sf-depth-2 sf-no-children>a hrefhttps://een.ec.europa.eu/tools/services/SearchCenter/Search/ProfileSimpleSearch?orgaIdME00231 target_blank classsf-depth-2>Pronađi partnera/a>/li>li idmenu-2910-1 classmiddle even sf-item-4 sf-depth-2 sf-no-children>a href/najave/poslovni-susreti classsf-depth-2>Poslovni susreti/a>/li>li idmenu-3108-1 classlast odd sf-item-5 sf-depth-2 sf-no-children>a href/kalendar-sajmova classsf-depth-2>Kalendar sajmova/a>/li>/ul>/li>li idmenu-1249-1 classmiddle odd sf-item-5 sf-depth-1 sf-total-children-3 sf-parent-children-0 sf-single-children-3 menuparent>a href/multimedia classsf-depth-1 menuparent>Multimedija/a>ul>li idmenu-1893-1 classfirst odd sf-item-1 sf-depth-2 sf-no-children>a href/multimedia/fotografije classsf-depth-2>Fotografije/a>/li>li idmenu-1896-1 classmiddle even sf-item-2 sf-depth-2 sf-no-children>a href/multimedia/publikacije classsf-depth-2>Publikacije/a>/li>li idmenu-3213-1 classlast odd sf-item-3 sf-depth-2 sf-no-children>a href/multimedija/video classsf-depth-2>Video/a>/li>/ul>/li>li idmenu-1385-1 classmiddle even sf-item-6 sf-depth-1 sf-total-children-2 sf-parent-children-2 sf-single-children-0 menuparent>a href/javni-pozivi classsf-depth-1 menuparent>Javni pozivi/a>ul>li idmenu-3434-1 classfirst odd sf-item-1 sf-depth-2 sf-total-children-13 sf-parent-children-0 sf-single-children-13 menuparent>a href/javni-pozivi/horizon-2020 classsf-depth-2 menuparent>Horizon 2020/a>ul>li idmenu-3539-1 classfirst odd sf-item-1 sf-depth-3 sf-no-children>a href/vijesti/noviteti-na-participant-portalu classsf-depth-3>Noviteti na Participant Portalu/a>/li>li idmenu-3528-1 classmiddle even sf-item-2 sf-depth-3 sf-no-children>a href/javni-pozivi/uputstvo-za-apliciranje-0 classsf-depth-3>Uputstvo za apliciranje/a>/li>li idmenu-3529-1 classmiddle odd sf-item-3 sf-depth-3 sf-no-children>a href/javni-pozivi/sta-je-msp-instrument classsf-depth-3>Šta je MSP Instrument/a>/li>li idmenu-3525-1 classmiddle even sf-item-4 sf-depth-3 sf-no-children>a href/javni-pozivi/msp-instrumenti-pozivi-po-oblastima classsf-depth-3>MSP Instrumenti - pozivi po oblastima/a>/li>li idmenu-3538-1 classmiddle odd sf-item-5 sf-depth-3 sf-no-children>a href/vijesti/iz-een-mreze/novi-pozivi-u-okviru-horizon-2020-programa-0 classsf-depth-3>Novi pozivi u okviru Horizon 2020 programa/a>/li>li idmenu-3437-1 classmiddle even sf-item-6 sf-depth-3 sf-no-children>a href/javni-pozivi/innovative-mobile-e-government-applications-smes classsf-depth-3>Innovative mobile e-government applications by SMEs/a>/li>li idmenu-3438-1 classmiddle odd sf-item-7 sf-depth-3 sf-no-children>a href/javni-pozivi/boosting-potential-small-businesses-eco-innovation-and-sustainable-supply-raw-materials classsf-depth-3>Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials/a>/li>li idmenu-3439-1 classmiddle even sf-item-8 sf-depth-3 sf-no-children>a href/javni-pozivi/small-business-innovation-research-transport classsf-depth-3>Small business innovation research for Transport/a>/li>li idmenu-3440-1 classmiddle odd sf-item-9 sf-depth-3 sf-no-children>a href/javni-pozivi/sme-business-model-innovation classsf-depth-3>SME business model innovation/a>/li>li idmenu-3441-1 classmiddle even sf-item-10 sf-depth-3 sf-no-children>a href/javni-pozivi/poziv-za-savjetnike-coach-activities-u-vezi-pruzanja-savjetodavnih-i-strucnih-savjeta classsf-depth-3>Poziv za savjetnike u vezi pružanja savjetodavnih i stručnih savjeta malih i srednjim preduzećima u okviru Horizon 2020/a>/li>li idmenu-3442-1 classmiddle odd sf-item-11 sf-depth-3 sf-no-children>a href/javni-pozivi/sme-boosting-biotechnology-based-industrial-processes-driving-competitiveness-and classsf-depth-3>SME boosting biotechnology-based industrial processes driving competitiveness and sustainability/a>/li>li idmenu-3436-1 classmiddle even sf-item-12 sf-depth-3 sf-no-children>a href/javni-pozivi/mogucnosti-za-mala-i-srednja-preduzeca-u-okviru-horizon-2020 classsf-depth-3>Mogućnosti za mala i srednja preduzeća u okviru Horizon 2020/a>/li>li idmenu-3530-1 classlast odd sf-item-13 sf-depth-3 sf-no-children>a href/javni-pozivi/poljoprivreda-2016 classsf-depth-3>Poljoprivreda 2016/a>/li>/ul>/li>li idmenu-3435-1 classlast even sf-item-2 sf-depth-2 sf-total-children-9 sf-parent-children-0 sf-single-children-9 menuparent>a href/javni-pozivi/cosme classsf-depth-2 menuparent>COSME/a>ul>li idmenu-3527-1 classfirst odd sf-item-1 sf-depth-3 sf-no-children>a href/javni-pozivi/uputstvo-za-apliciranje classsf-depth-3>Uputstvo za apliciranje/a>/li>li idmenu-6879-1 classmiddle even sf-item-2 sf-depth-3 sf-no-children>a href/javni-pozivi/otvoren-poziv-za-dostavljanje-projektnih-prijedloga-evropskom-programu-klastera classsf-depth-3>Otvoren poziv za dostavljanje projektnih prijedloga Evropskom programu klastera izvrsnosti/a>/li>li idmenu-3533-1 classmiddle odd sf-item-3 sf-depth-3 sf-no-children>a href/javni-pozivi/supporting-promotion-and-development-transnational-thematic-tourism-products-linked classsf-depth-3>Supporting the promotion and development of transnational thematic tourism products linked to cultural and creative industries/a>/li>li idmenu-3534-1 classmiddle even sf-item-4 sf-depth-3 sf-no-children>a href/javni-pozivi/cosme-javni-poziv-za-podrsku-u-oblasti-modne-industrije-i-turizma classsf-depth-3>COSME javni poziv za podršku u oblasti modne industrije i turizma/a>/li>li idmenu-3536-1 classmiddle odd sf-item-5 sf-depth-3 sf-no-children>a href/javni-pozivi/european-incubation-networks-creativity-driven-innovation classsf-depth-3>European incubation network(s) for creativity-driven innovation/a>/li>li idmenu-3535-1 classmiddle even sf-item-6 sf-depth-3 sf-no-children>a href/javni-pozivi/training-sme-friendly-policies-central-purchasing-bodies-cpbs classsf-depth-3>Training for SME-friendly policies in Central Purchasing Bodies (CPBs)/a>/li>li idmenu-3526-1 classmiddle odd sf-item-7 sf-depth-3 sf-no-children>a href/vijesti/eif-objavio-pozive-za-iskazivanje-interesa-finansijskih-posrednika-za-finansiranje-msp classsf-depth-3>EIF objavio pozive za iskazivanje interesa finansijskih posrednika za finansiranje MSP/a>/li>li idmenu-3445-1 classmiddle even sf-item-8 sf-depth-3 sf-no-children>a href/javni-pozivi/facilitating-eu-transnational-tourism-flows-seniors-and-young-people-low-and-medium classsf-depth-3>Facilitating EU transnational tourism flows for seniors and young people in the low and medium seasons/a>/li>li idmenu-3531-1 classlast odd sf-item-9 sf-depth-3 sf-no-children>a href/javni-pozivi/improving-smes-access-public-procurement classsf-depth-3>Improving SMEs' access to public procurement/a>/li>/ul>/li>/ul>/li>li idmenu-2827-1 classlast odd sf-item-7 sf-depth-1 sf-total-children-4 sf-parent-children-0 sf-single-children-4 menuparent>a href/kontakt/direkcija-za-razvoj-malih-i-srednjih-preduzeca-evropski-centar-za-informacije-i-inovacije classsf-depth-1 menuparent>Kontakt/a>ul>li idmenu-2826-1 classfirst odd sf-item-1 sf-depth-2 sf-no-children>a href/kontakt/direkcija-za-razvoj-malih-i-srednjih-preduzeca-evropski-centar-za-informacije-i-inovacije titleDirekcija za razvoj malih i srednjih preduzeća - Evropski centar za informacije i inovacije Crne Gore classsf-depth-2>DDSME/a>/li>li idmenu-2890-1 classmiddle even sf-item-2 sf-depth-2 sf-no-children>a href/kontakt/masinski-fakultet-univerziteta-crne-gore titleMašinski fakultet Univerziteta Crne Gore classsf-depth-2>MF/a>/li>li idmenu-2891-1 classmiddle odd sf-item-3 sf-depth-2 sf-no-children>a href/kontakt/privredna-komora-crne-gore titlePrivredna komora Crne Gore classsf-depth-2>PK/a>/li>li idmenu-2892-1 classlast even sf-item-4 sf-depth-2 sf-no-children>a href/kontakt/business-start-centar-bar titleBusiness Start-up Centar Bar classsf-depth-2>BSC/a>/li>/ul>/li>/ul> /div>/div> /div>!-- /header_top --> /div> div classheader-left-pattern>/div> div classheader-right-pattern>/div> div classheader-bottom-container> div classwrapper> div idlogo classlogo> a href/ relhome> img srchttp://www.euroinfo.me/sites/euroinfo.me/files/logo-v2.png altEuroinfo Logo /> /a> /div>!--/logo--> div idheader_bottom classregion region-header-bottom clearfix> div idblock-apachesolr-panels-search-form classblock block-apachesolr-panels header-search-form float-right> div classcontent> form action/ methodpost idapachesolr-panels-search-block accept-charsetUTF-8>div>div classform-item form-type-textfield form-item-apachesolr-panels-search-form> label classelement-invisible foredit-apachesolr-panels-search-form>Pretraga /label> input titleEnter the terms you wish to search for. typetext idedit-apachesolr-panels-search-form nameapachesolr_panels_search_form value size15 maxlength128 classform-text />/div>input typehidden nameform_build_id valueform-NdexzW7yKBUt2Mvo52BdOhVLrKd5xoc-c58LI63tmR8 />input typehidden nameform_id valueapachesolr_panels_search_block />div classform-actions form-wrapper idedit-actions>input typesubmit idedit-submit nameop valuePretraga classform-submit />/div>/div>/form> /div>/div>div idblock-locale-language classblock block-locale language-switch float-right clear-right> div classcontent> ul classlanguage-switcher-locale-url>li classen first>a href/en classlanguage-link xml:langen>Eng/a>/li>li classsh last active>a href/ classlanguage-link active xml:langsh>Mne/a>/li>/ul> /div>/div>div idblock-menu-menu-header-top-menu classblock block-menu header-top-menu float-right> div classcontent> ul classmenu>li classfirst last leaf>a href/site-map classsitemap-icon>Mapa sajta/a>/li>/ul> /div>/div>div idblock-block-6 classblock block-block social-links float-right> div classcontent> a href# classfacebook-icon target_blank>Facebook/a>a href# classtwitter-icon target_blank>Twitter/a> /div>/div> /div>!-- /header_bottom --> /div> /div> /div>!-- /header --> div classcontent-wrapper> div idcontent classregion region-content clearfix> div idblock-system-main classblock block-system main-content> div classcontent> div classpanel-stacked idfront-page-panel> div classpanel-stacked-middle clearfix> div classpanel-pane pane-views-panes pane-front-page-featured-articles-panel-pane-1 sp-15-top sp-10-bottom float-left > div classpane-content> div classview view-front-page-featured-articles view-id-front_page_featured_articles view-display-id-panel_pane_1 featured-slideshow view-dom-id-f3f6094d25f46e9301946d53a1cb66bb> div classview-header> script typetext/javascript>/script> /div> div classview-content> div classskin-default> div idviews_slideshow_cycle_main_front_page_featured_articles-panel_pane_1_1 classviews_slideshow_cycle_main views_slideshow_main>div idviews_slideshow_cycle_teaser_section_front_page_featured_articles-panel_pane_1_1 classviews-slideshow-cycle-main-frame views_slideshow_cycle_teaser_section> div idviews_slideshow_cycle_div_front_page_featured_articles-panel_pane_1_1_0 classviews-slideshow-cycle-main-frame-row views_slideshow_cycle_slide views_slideshow_slide views-row-1 views-row-first views-row-odd aria-labelledbyviews_slideshow_pager_field_item_bottom_front_page_featured_articles-panel_pane_1_1_0> div classviews-slideshow-cycle-main-frame-row-item views-row views-row-0 views-row-odd views-row-first> div classimage> a href/vijesti/odrzana-tradicionalna-konferencija-connecto-2024-u-mostaru>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/428x320/public/multimedia/pages/foto/2013/09/connecto_2024_-_loksan_harley_1.jpg width428 height320 alt />/a> /div> div classright-side> div classpretitle>iz EEN - Crne Gore - 26.06.2024./div> h3>a href/vijesti/odrzana-tradicionalna-konferencija-connecto-2024-u-mostaru>Održana tradicionalna konferencija CONNECTO 2024. u Mostaru/a>/h3>/div> /div>/div>div idviews_slideshow_cycle_div_front_page_featured_articles-panel_pane_1_1_1 classviews-slideshow-cycle-main-frame-row views_slideshow_cycle_slide views_slideshow_slide views-row-2 views_slideshow_cycle_hidden views-row-even aria-labelledbyviews_slideshow_pager_field_item_bottom_front_page_featured_articles-panel_pane_1_1_1> div classviews-slideshow-cycle-main-frame-row-item views-row views-row-0 views-row-odd> div classimage> a href/vijesti/monteenegro-na-sajmu-evropskih-projekata>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/428x320/public/multimedia/pages/foto/2013/09/1_3.jpg width428 height320 alt />/a> /div> div classright-side> div classpretitle>iz EEN - Crne Gore - 10.06.2024./div> h3>a href/vijesti/monteenegro-na-sajmu-evropskih-projekata>MontEENegro na Sajmu evropskih projekata!/a>/h3>/div> /div>/div>div idviews_slideshow_cycle_div_front_page_featured_articles-panel_pane_1_1_2 classviews-slideshow-cycle-main-frame-row views_slideshow_cycle_slide views_slideshow_slide views-row-3 views_slideshow_cycle_hidden views-row-last views-row-odd aria-labelledbyviews_slideshow_pager_field_item_bottom_front_page_featured_articles-panel_pane_1_1_2> div classviews-slideshow-cycle-main-frame-row-item views-row views-row-0 views-row-odd> div classimage> a href/vijesti/monteenegro-na-dogadaju-povodom-zvanicnog-pocetka-rada-haba-evropskog-instituta-za-inovacije>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/428x320/public/multimedia/pages/foto/2013/09/img-142c00caae05de4d2eb8397649ec7d4a-v.jpg width428 height320 alt />/a> /div> div classright-side> div classpretitle>iz EEN - Crne Gore - 27.05.2024./div> h3>a href/vijesti/monteenegro-na-dogadaju-povodom-zvanicnog-pocetka-rada-haba-evropskog-instituta-za-inovacije>MontEENegro na događaju povodom zvaničnog početka rada haba Evropskog instituta za inovacije i tehnologiju - EIT hub Crna Gora/a>/h3>/div> /div>/div>/div>/div> div classviews-slideshow-controls-bottom clearfix> div idwidget_pager_bottom_front_page_featured_articles-panel_pane_1_1 classviews-slideshow-pager-fields widget_pager widget_pager_bottom views_slideshow_pager_field> div idviews_slideshow_pager_field_item_bottom_front_page_featured_articles-panel_pane_1_1_0 classviews-slideshow-pager-field-item views_slideshow_pager_field_item views-row-odd views-row-first aria-controlsviews_slideshow_cycle_div_front_page_featured_articles-panel_pane_1_1_0> div classviews-field-counter> div classviews-content-counter> a href#slideshow-0>1/a> /div>/div>div classviews-field-nothing> div classviews-content-nothing> a href#slideshow-0>div classpietimer-container>/div>/a> /div>/div>/div>div idviews_slideshow_pager_field_item_bottom_front_page_featured_articles-panel_pane_1_1_1 classviews-slideshow-pager-field-item views_slideshow_pager_field_item views-row-even aria-controlsviews_slideshow_cycle_div_front_page_featured_articles-panel_pane_1_1_1> div classviews-field-counter> div classviews-content-counter> a href#slideshow-1>2/a> /div>/div>div classviews-field-nothing> div classviews-content-nothing> a href#slideshow-1>div classpietimer-container>/div>/a> /div>/div>/div>div idviews_slideshow_pager_field_item_bottom_front_page_featured_articles-panel_pane_1_1_2 classviews-slideshow-pager-field-item views_slideshow_pager_field_item views-row-odd views-row-last aria-controlsviews_slideshow_cycle_div_front_page_featured_articles-panel_pane_1_1_2> div classviews-field-counter> div classviews-content-counter> a href#slideshow-2>3/a> /div>/div>div classviews-field-nothing> div classviews-content-nothing> a href#slideshow-2>div classpietimer-container>/div>/a> /div>/div>/div>/div> /div> /div> /div> /div> /div> /div>div classpanel-separator>/div>div classpanel-pane pane-views-panes pane-najave-aside-panel-pane-1 sp-15-top sp-10-bottom float-right > div classpane-content> div classview view-najave-aside view-id-najave_aside view-display-id-panel_pane_1 events-aside view-dom-id-4c2a1d4c8c55f398036009f2f70d454a> div classview-header> h2 classview-title>najave/h2> /div> div classview-content> ul> li classfirst odd> a href/najave/opste/connect2slovenia-international-matchmaking-event-2024-tokom-medunarodnog-sajma> div classdate-wrapper> div classdate> div classday>19/div>div classmonth>Sep/div> /div> /div> h3>„Connect2Slovenia - International Matchmaking Event 2024“ tokom Međunarodnog sajma preduzetništva (MOS) u Celju /h3>/a> /li> li classeven> a href/najave/opste/monteenegro-vas-poziva-na-b2b-susrete-u-okviru-konferencije-connecto-2024> div classdate-wrapper> div classdate> div classday>17/div>div classmonth>Jun/div> /div> /div> h3>MontEENegro vas poziva na B2B susrete u okviru konferencije CONNECTO 2024!/h3>/a> /li> li classlast odd> a href/najave/opste/monteenegro-vas-poziva-na-b2b-susrete-u-okviru-konferencije-connecto-2024> div classdate-wrapper> div classdate> div classday>17/div>div classmonth>Jun/div> /div> /div> h3>MontEENegro vas poziva na B2B susrete u okviru konferencije CONNECTO 2024!/h3>/a> /li> /ul> /div> div classview-footer> a href/najave classmore-link>Pogledaj sve/a> /div> /div> /div> /div>div classpanel-separator>/div>div classpanel-pane pane-custom pane-1 float-left sp-10-bottom > div classpane-content> a href/node/add/bcd-forma classreport-company-banner> h2>prijavi br /> preduzeće !/h2> div classicon>/div>/a> /div> /div>div classpanel-separator>/div>div classpanel-pane pane-custom pane-2 float-left sp-10-bottom sp-10-left sp-10-right > div classpane-content> script typetext/javascript> jQuery(document).ready(function($) { $(#findPartnerBanner).colorbox({ iframe: true, width: 900, height: 90% }); });/script>a hrefhttp://een.ec.europa.eu/tools/services/SearchCenter/Search/ProfileSimpleSearch?orgaIdME00231 classfind-partner-banner idfindPartnerBanner> h2>pronađi br /> partnera !/h2> div classicon>/div>/a> /div> /div>div classpanel-separator>/div>div classpanel-pane pane-views-panes pane-javni-pozivi-aside-panel-pane-1 float-left sp-10-bottom > div classpane-content> div classview view-javni-pozivi-aside view-id-javni_pozivi_aside view-display-id-panel_pane_1 public-calls-aside view-dom-id-1f367a41f3dd837e1642092a4e3d6ea2> div classview-header> h2 classview-title>javni pozivi/h2> /div> div classview-content> ul> li classfirst odd> a href/javni-pozivi/raspisan-konkurs-za-podrsku-startup-ovima-na-teritoriji-podgorice> div classicon>/div> h3>RASPISAN KONKURS ZA PODRŠKU STARTUP-OVIMA NA TERITORIJI PODGORICE/h3>/a> /li> li classeven> a href/javni-pozivi/otvoreno-pet-programa-fonda-za-inovacije> div classicon>/div> h3>Otvoreno pet programa Fonda za inovacije/h3>/a> /li> li classlast odd> a href/javni-pozivi/javni-poziv-za-ucesce-u-postupku-dodjele-sredstava-za-program-za-unapredenje> div classicon>/div> h3>Javni poziv za učešće u postupku dodjele sredstava za Program za unapređenje konkurentnosti privrede za 2023. godinu/h3>/a> /li> /ul> /div> div classview-footer> a href/javni-pozivi classmore-link>Pogledaj sve/a> /div> /div> /div> /div>div classpanel-separator>/div>div classpanel-pane pane-block pane-quicktabs-multimedija float-left pane-quicktabs right-sidebar-block > div classpane-content> div idquicktabs-multimedija classquicktabs-wrapper multimedia-aside quicktabs-style-nostyle>div classitem-list>ul classquicktabs-tabs quicktabs-style-nostyle>li classactive first>a href/home?qt-multimedija0#qt-multimedija idquicktabs-tab-multimedija-0 rel classactive>foto/a>/li>li>a href/home?qt-multimedija1#qt-multimedija idquicktabs-tab-multimedija-1 rel classactive>video/a>/li>li classlast>a href/home?qt-multimedija2#qt-multimedija idquicktabs-tab-multimedija-2 rel classactive>publikacije/a>/li>/ul>/div>div idquicktabs-container-multimedija classquicktabs_main quicktabs-style-nostyle >div idquicktabs-tabpage-multimedija-0 classquicktabs-tabpage >div classview view-multimedia-tabs view-id-multimedia_tabs view-display-id-panel_pane_3 albums-small-slideshow view-dom-id-c113c64d07c12c197e96318dff4a7851> div classview-content> div classskin-default> div idviews_slideshow_cycle_main_multimedia_tabs-panel_pane_3_1 classviews_slideshow_cycle_main views_slideshow_main>div idviews_slideshow_cycle_teaser_section_multimedia_tabs-panel_pane_3_1 classviews-slideshow-cycle-main-frame views_slideshow_cycle_teaser_section> div idviews_slideshow_cycle_div_multimedia_tabs-panel_pane_3_1_0 classviews-slideshow-cycle-main-frame-row views_slideshow_cycle_slide views_slideshow_slide views-row-1 views-row-first views-row-odd > div classviews-slideshow-cycle-main-frame-row-item views-row views-row-0 views-row-odd views-row-first> a hrefhttp://www.euroinfo.me/multimedia/fotografije/sajam-i-b2b-biznis-baze-2013 titleSajam i B2B - Biznis Baze 2013 >a href/multimedia/fotografije/sajam-i-b2b-biznis-baze-2013>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/133x97/public/multimedia/gallery/defaultimage/2013/09/bb_0.jpg width133 height97 alt />/a>/a> /div>div classviews-slideshow-cycle-main-frame-row-item views-row views-row-1 views-row-even views-row-first> a hrefhttp://www.euroinfo.me/multimedia/fotografije/een-regionalna-konferencija-beograd-2013 titleEEN Regionalna konferencija Beograd 2013>a href/multimedia/fotografije/een-regionalna-konferencija-beograd-2013>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/133x97/public/multimedia/gallery/defaultimage/2013/09/980x_header.jpg width133 height97 alt />/a>/a> /div>div classviews-slideshow-cycle-main-frame-row-item views-row views-row-2 views-row-odd views-row-first> a hrefhttp://www.euroinfo.me/multimedia/fotografije/een-godisnja-konferencija-2013 titleEEN Godišnja Konferencija 2013>a href/multimedia/fotografije/een-godisnja-konferencija-2013>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/133x97/public/multimedia/gallery/defaultimage/2013/09/vilnius1.jpg width133 height97 alt />/a>/a> /div>div classviews-slideshow-cycle-main-frame-row-item views-row views-row-3 views-row-even views-row-first> a hrefhttp://www.euroinfo.me/multimedia/fotografije/saradnja-sa-fondacijom-petrovic-njegos titleSaradnja sa fondacijom "Petrović - Njegoš">a href/multimedia/fotografije/saradnja-sa-fondacijom-petrovic-njegos>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/133x97/public/multimedia/gallery/defaultimage/2013/09/fondacija-logo_0_0.jpg width133 height97 alt />/a>/a> /div>/div>/div>/div> div classviews-slideshow-controls-bottom clearfix> div idviews_slideshow_controls_text_multimedia_tabs-panel_pane_3_1 classviews-slideshow-controls-text views_slideshow_controls_text> span idviews_slideshow_controls_text_previous_multimedia_tabs-panel_pane_3_1 classviews-slideshow-controls-text-previous views_slideshow_controls_text_previous> a href# relprev>Previous/a>/span> span idviews_slideshow_controls_text_pause_multimedia_tabs-panel_pane_3_1 classviews-slideshow-controls-text-pause views_slideshow_controls_text_pause views-slideshow-controls-text-status-play>a href#>Pause/a>/span> span idviews_slideshow_controls_text_next_multimedia_tabs-panel_pane_3_1 classviews-slideshow-controls-text-next views_slideshow_controls_text_next> a href# relnext>Next/a>/span>/div> /div> /div> /div> div classview-footer> a href/multimedia/fotografije classmore-link>Pogledaj sve fotografije/a> /div> /div>/div>div idquicktabs-tabpage-multimedija-1 classquicktabs-tabpage quicktabs-hide>div classview view-multimedia-tabs view-id-multimedia_tabs view-display-id-panel_pane_1 albums-small-slideshow view-dom-id-26fa1bdb5d3650abd43db8b988084fbe> div classview-content> div classskin-default> div idviews_slideshow_cycle_main_multimedia_tabs-panel_pane_1_1 classviews_slideshow_cycle_main views_slideshow_main>div idviews_slideshow_cycle_teaser_section_multimedia_tabs-panel_pane_1_1 classviews-slideshow-cycle-main-frame views_slideshow_cycle_teaser_section> div idviews_slideshow_cycle_div_multimedia_tabs-panel_pane_1_1_0 classviews-slideshow-cycle-main-frame-row views_slideshow_cycle_slide views_slideshow_slide views-row-1 views-row-first views-row-odd > div classviews-slideshow-cycle-main-frame-row-item views-row views-row-0 views-row-odd views-row-first> a hrefhttp://www.euroinfo.me/multimedia/video/easme titleEASME>a href/multimedia/video/easme>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/133x97/public/multimedia/gallery/defaultimage/2013/09/easme.jpg width133 height97 alt />/a>/a> /div>div classviews-slideshow-cycle-main-frame-row-item views-row views-row-1 views-row-even views-row-first> a hrefhttp://www.euroinfo.me/multimedia/video/what-brokerage-event titleWhat is a Brokerage Event?>a href/multimedia/video/what-brokerage-event>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/133x97/public/multimedia/gallery/defaultimage/2013/09/be.jpg width133 height97 alt />/a>/a> /div>div classviews-slideshow-cycle-main-frame-row-item views-row views-row-2 views-row-odd views-row-first> a hrefhttp://www.euroinfo.me/multimedia/video/horizon-2020-kratki-video titleHorizon 2020 - kratki video>a href/multimedia/video/horizon-2020-kratki-video>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/133x97/public/multimedia/gallery/defaultimage/2013/09/horizon2020_0.jpg width133 height97 alt />/a>/a> /div>div classviews-slideshow-cycle-main-frame-row-item views-row views-row-3 views-row-even views-row-first> a hrefhttp://www.euroinfo.me/multimedia/video/een-godisnja-konferencija-2013 titleEEN Godišnja Konferencija 2013>a href/multimedia/video/een-godisnja-konferencija-2013>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/133x97/public/multimedia/gallery/defaultimage/2013/09/vilnius1_0.jpg width133 height97 alt />/a>/a> /div>/div>div idviews_slideshow_cycle_div_multimedia_tabs-panel_pane_1_1_1 classviews-slideshow-cycle-main-frame-row views_slideshow_cycle_slide views_slideshow_slide views-row-2 views_slideshow_cycle_hidden views-row-last views-row-even > div classviews-slideshow-cycle-main-frame-row-item views-row views-row-0 views-row-odd> a hrefhttp://www.euroinfo.me/multimedia/video/enterprise-europe-network-secret-small-business-success titleEnterprise Europe Network - The secret of small business success>a href/multimedia/video/enterprise-europe-network-secret-small-business-success>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/133x97/public/multimedia/gallery/defaultimage/2013/09/tajna_een.jpg width133 height97 alt />/a>/a> /div>div classviews-slideshow-cycle-main-frame-row-item views-row views-row-1 views-row-even> a hrefhttp://www.euroinfo.me/multimedia/video/enterprise-europe-network-pocetak titleEnterprise Europe Network: Početak>a href/multimedia/video/enterprise-europe-network-pocetak>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/133x97/public/multimedia/gallery/defaultimage/2013/09/een_pocetak.jpg width133 height97 alt />/a>/a> /div>div classviews-slideshow-cycle-main-frame-row-item views-row views-row-2 views-row-odd> a hrefhttp://www.euroinfo.me/multimedia/video/enterprise-europe-network-nase-usluge titleEnterprise Europe Network - Naše usluge>a href/multimedia/video/enterprise-europe-network-nase-usluge>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/133x97/public/multimedia/gallery/defaultimage/2013/09/een_usluge.jpg width133 height97 alt />/a>/a> /div>/div>/div>/div> div classviews-slideshow-controls-bottom clearfix> div idviews_slideshow_controls_text_multimedia_tabs-panel_pane_1_1 classviews-slideshow-controls-text views_slideshow_controls_text> span idviews_slideshow_controls_text_previous_multimedia_tabs-panel_pane_1_1 classviews-slideshow-controls-text-previous views_slideshow_controls_text_previous> a href# relprev>Previous/a>/span> span idviews_slideshow_controls_text_pause_multimedia_tabs-panel_pane_1_1 classviews-slideshow-controls-text-pause views_slideshow_controls_text_pause views-slideshow-controls-text-status-play>a href#>Pause/a>/span> span idviews_slideshow_controls_text_next_multimedia_tabs-panel_pane_1_1 classviews-slideshow-controls-text-next views_slideshow_controls_text_next> a href# relnext>Next/a>/span>/div> /div> /div> /div> div classview-footer> a href/multimedija/video classmore-link>Pogledaj sve/a> /div> /div>/div>div idquicktabs-tabpage-multimedija-2 classquicktabs-tabpage quicktabs-hide>div classview view-multimedia-tabs view-id-multimedia_tabs view-display-id-panel_pane_2 publications-small-slideshow view-dom-id-43c72c8d93a2aa28d9e23856afbf1049> div classview-content> div classskin-default> div idviews_slideshow_cycle_main_multimedia_tabs-panel_pane_2_1 classviews_slideshow_cycle_main views_slideshow_main>div idviews_slideshow_cycle_teaser_section_multimedia_tabs-panel_pane_2_1 classviews-slideshow-cycle-main-frame views_slideshow_cycle_teaser_section> div idviews_slideshow_cycle_div_multimedia_tabs-panel_pane_2_1_0 classviews-slideshow-cycle-main-frame-row views_slideshow_cycle_slide views_slideshow_slide views-row-1 views-row-first views-row-odd > div classviews-slideshow-cycle-main-frame-row-item views-row views-row-0 views-row-odd views-row-first> a href/sites/euroinfo.me/files/multimedia/gallery/files/2013/09/a4smes_manual_toolbox_for_smes.pdf titleHow to use the Toolbox set for SMEs for close-to-market activities in H2020 target_blank>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/150x207/public/multimedia/gallery/defaultimage/2013/09/pages_from_a4smes_manual_toolbox_for_smes.jpg width150 height207 alt />/a> /div>/div>div idviews_slideshow_cycle_div_multimedia_tabs-panel_pane_2_1_1 classviews-slideshow-cycle-main-frame-row views_slideshow_cycle_slide views_slideshow_slide views-row-2 views_slideshow_cycle_hidden views-row-even > div classviews-slideshow-cycle-main-frame-row-item views-row views-row-0 views-row-odd> a href/sites/euroinfo.me/files/multimedia/gallery/files/2013/09/10tips.pdf title10 korisnih savjeta za Vaš biznis u 2018. godini target_blank>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/150x207/public/multimedia/gallery/defaultimage/2013/09/25488444_1477734009012662_8962871438268387522_o.png width150 height207 alt />/a> /div>/div>div idviews_slideshow_cycle_div_multimedia_tabs-panel_pane_2_1_2 classviews-slideshow-cycle-main-frame-row views_slideshow_cycle_slide views_slideshow_slide views-row-3 views_slideshow_cycle_hidden views-row-last views-row-odd > div classviews-slideshow-cycle-main-frame-row-item views-row views-row-0 views-row-odd> img typeoffoaf:Image src/sites/euroinfo.me/files/styles/150x207/public/multimedia/gallery/defaultimage/2013/09/pages_from_smes_in_h2020.jpg width150 height207 alt /> /div>/div>/div>/div> div classviews-slideshow-controls-bottom clearfix> div idviews_slideshow_controls_text_multimedia_tabs-panel_pane_2_1 classviews-slideshow-controls-text views_slideshow_controls_text> span idviews_slideshow_controls_text_previous_multimedia_tabs-panel_pane_2_1 classviews-slideshow-controls-text-previous views_slideshow_controls_text_previous> a href# relprev>Previous/a>/span> span idviews_slideshow_controls_text_pause_multimedia_tabs-panel_pane_2_1 classviews-slideshow-controls-text-pause views_slideshow_controls_text_pause views-slideshow-controls-text-status-play>a href#>Pause/a>/span> span idviews_slideshow_controls_text_next_multimedia_tabs-panel_pane_2_1 classviews-slideshow-controls-text-next views_slideshow_controls_text_next> a href# relnext>Next/a>/span>/div> /div> /div> /div> div classview-footer> a href/multimedia/publikacije classmore-link>Pogledaj sve publikacije/a> /div> /div>/div>/div>/div> /div> /div>div classpanel-separator>/div>div classpanel-pane pane-block pane-block-11 pane-block > div classpane-content> div classpanel-pane pane-block pane-mailchimp-lists-euroinfo-cg-newsletter newsletter-subscribe float-left sp-10-left sp-10-right pane-mailchimp-lists> h2 classpane-title> newsletter /h2> div classpane-content> form classmailchimp-lists-user-subscribe-form action/web/20180809035137/http://euroinfo.me/ methodpost idmailchimp-lists-user-subscribe-form-euroinfo-cg-newsletter accept-charsetUTF-8 novalidatenovalidate>div>div idmailchimp-newsletter-euroinfo_cg_newsletter classmailchimp-newsletter-wrapper>div idedit-mailchimp-lists-mailchimp-euroinfo-cg-newsletter-title classform-item form-type-item> /div>div classform-item form-type-textfield form-item-mailchimp-lists-mailchimp-euroinfo-cg-newsletter-mergevars-EMAIL> label foredit-mailchimp-lists-mailchimp-euroinfo-cg-newsletter-mergevars-email>Email Address span classform-required titleThis field is required.>*/span>/label> input typetext idedit-mailchimp-lists-mailchimp-euroinfo-cg-newsletter-mergevars-email namemailchimp_listsmailchimp_euroinfo_cg_newslettermergevarsEMAIL value size25 maxlength128 classform-text required valid placeholderEmail Address *>/div>div classform-item form-type-textfield form-item-mailchimp-lists-mailchimp-euroinfo-cg-newsletter-mergevars-FNAME> label foredit-mailchimp-lists-mailchimp-euroinfo-cg-newsletter-mergevars-fname>First Name /label> input typetext idedit-mailchimp-lists-mailchimp-euroinfo-cg-newsletter-mergevars-fname namemailchimp_listsmailchimp_euroinfo_cg_newslettermergevarsFNAME value size25 maxlength128 classform-text valid placeholderFirst Name >/div>/div>input typesubmit idedit-submit nameop valueSubmit classform-submit>input typehidden nameform_build_id valueform-wsFqZxRUJx0UHlrqIu1Tt5qZs-qj9IABW2Fs5BtSxx0>input typehidden nameform_id valuemailchimp_lists_user_subscribe_form_euroinfo_cg_newsletter>/div>/form> /div> /div> /div> /div>div classpanel-separator>/div>div classpanel-pane pane-views-panes pane-linkovi-aside-panel-pane-1 sp-10-bottom float-right > div classpane-content> div classview view-linkovi-aside view-id-linkovi_aside view-display-id-panel_pane_1 links-aside view-dom-id-d97eb781c702c73016b7f2e5d3952878> div classview-header> h2 classview-title>linkovi/h2> /div> div classview-content> ul> li classfirst odd> a hrefhttp://danube-inco.net/ target_blank> div classcount> 1 /div> h3>Danube INCO.NET (News, Events, Calls)/h3>/a> /li> li classeven> a hrefhttp://ted.europa.eu/TED/misc/chooseLanguage.do target_blank> div classcount> 2 /div> h3>TED (Tenders Electronic Daily)/h3>/a> /li> li classodd> a hrefhttps://webgate.ec.europa.eu/smeip/ target_blank> div classcount> 3 /div> h3> SME Internationalisation Portal/h3>/a> /li> li classlast even> a hrefhttp://een.ec.europa.eu/ target_blank> div classcount> 4 /div> h3>Enterprise Europe Network/h3>/a> /li> /ul> /div> /div> /div> /div> /div>!--/content-middle--> /div>!--/panel-right-sidebar--> /div>/div> /div>!-- /content --> /div> div classpush>/div>!-- Sticky footer push -->/div> !-- /main-container -->div idfooter classfooter> div classfooter-top> div classwrapper> div idfooter_top classregion region-footer-top clearfix> div idblock-block-10 classblock block-block> div classcontent> !-- TTTT --> /div>/div>div idblock-views-baneri-footer-block classblock block-views> div classcontent> div classview view-baneri-footer view-id-baneri_footer view-display-id-block banners-footer view-dom-id-1c6583b9ec64e878f930dfbe7302d250> div classview-content> ul> li classfirst odd> div classimage> a hrefhttp://ec.europa.eu/index_en.htm titleEuropean Commission targetblank> div classoriginal>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/193x111_canvas/public/logotipi-recovered_03_09.png width193 height111 alt />/div> div classoverlay>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/193x111_canvas/public/multimedia/baneri/pictures/2012/03/logotipi-recovered_09.png width193 height111 alt />/div>/a> /div> /li> li classeven> div classimage> a hrefhttp://www.nasme.me/ titleDirekcija za razvoj malih i srednjih preduzeća targetblank> div classoriginal>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/193x111_canvas/public/untitled-2.png width193 height111 alt />/div> div classoverlay>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/193x111_canvas/public/multimedia/baneri/pictures/2012/03/untitled-1.png width193 height111 alt />/div>/a> /div> /li> li classodd> div classimage> a hrefhttp://www.ucg.ac.me/ titleUniverzitet Crne Gore targetblank> div classoriginal>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/193x111_canvas/public/logotipi-recovered_03_03.png width193 height111 alt />/div> div classoverlay>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/193x111_canvas/public/multimedia/baneri/pictures/2012/03/logotipi-recovered_03.png width193 height111 alt />/div>/a> /div> /li> li classeven> div classimage> a hrefhttp://www.privrednakomora.me/ titlePrivredna komora Crne Gore targetblank> div classoriginal>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/193x111_canvas/public/logotipi-recovered_03_15.png width193 height111 alt />/div> div classoverlay>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/193x111_canvas/public/multimedia/baneri/pictures/2012/03/logotipi-recovered_15.png width193 height111 alt />/div>/a> /div> /li> li classlast odd> div classimage> a hrefhttp://www.bscbar.org/ titleBSC Bar targetblank> div classoriginal>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/193x111_canvas/public/logotipi-recovered_03_12.png width193 height111 alt />/div> div classoverlay>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/193x111_canvas/public/multimedia/baneri/pictures/2012/03/logotipi-recovered_12.png width193 height111 alt />/div>/a> /div> /li> /ul> /div> /div> /div>/div> /div>!-- /footer_top --> /div> /div> div classfooter-bottom> div classwrapper> div idfooter_bottom classregion region-footer-bottom clearfix> div idblock-block-2 classblock block-block> div classcontent> div classcopyrights> div classrights>© www.euroinfo.me / All Rights Reserved /div> div classauthor> Created by: a classsprite bild titleVisit our Website hrefhttp://www.bild-studio.com/ target_blank>bild studio/a> /div>/div> /div>/div> /div>!-- /footer_bottom --> /div> /div>/div>!-- /footer --> script typetext/javascript srchttp://www.euroinfo.me/sites/euroinfo.me/files/js/js_gcgsv9036mkr2ymZgmKh_Uzh4KwHOaEjY9Qgbjo98rM.js>/script> !-- Google Analytics: change UA-XXXXX-X to be your sites ID. script typetext/javascript> var _gaq_setAccount,UA-XXXXX-X,_trackPageview; (function(d,t){var gd.createElement(t),sd.getElementsByTagName(t)0; g.src(https:location.protocol?//ssl://www)+.google-analytics.com/ga.js; s.parentNode.insertBefore(g,s)}(document,script)); /script> -->/body>/html>
Port 443
HTTP/1.1 200 OKDate: Mon, 20 Jan 2025 06:20:50 GMTServer: ApacheExpires: Sun, 19 Nov 1978 05:00:00 GMTCache-Control: no-cache, must-revalidateX-Content-Type-Options: nosniffContent-Language: shX-Frame-Options: SAMEORIGINX-Generator: Drupal 7 (http://drupal.org)Link: https://www.euroinfo.me/>; relcanonical,https://www.euroinfo.me/>; relshortlinkUpgrade: h2,h2cConnection: UpgradeTransfer-Encoding: chunkedContent-Type: text/html; charsetutf-8 /*** Note: This file may contain artifacts of previous malicious infection.* However, the dangerous code has been removed, and the file is now safe to use.*//** * @file * Pathologic text filter for Drupal. * * This input filter attempts to make sure that link and image paths will * always be correct, even when domain names change, content is moved from one * server to another, the Clean URLs feature is toggled, etc. *//** * Implements hook_filter_info(). */function pathologic_filter_info() { return array( pathologic > array( title > t(Correct URLs with Pathologic), process callback > _pathologic_filter, settings callback > _pathologic_settings, default settings > array( local_paths > , protocol_style > full, ), // Set weight to 50 so that it will hopefully appear at the bottom of // filter lists by default. 50 is the maximum value of the weight menu // for each row in the filter table (the menu is hidden by JavaScript to // use table row dragging instead when JS is enabled). weight > 50, ) );}/** * Settings callback for Pathologic. */function _pathologic_settings($form, &$form_state, $filter, $format, $defaults, $filters) { return array( reminder > array( #type > item, #title > t(In most cases, Pathologic should be the em>last/em> filter in the “Filter processing order” list.), #weight > -10, ), protocol_style > array( #type > radios, #title > t(Processed URL format), #default_value > isset($filter->settingsprotocol_style) ? $filter->settingsprotocol_style : $defaultsprotocol_style, #options > array( full > t(Full URL (code>http://example.com/foo/bar/code>)), proto-rel > t(Protocol relative URL (code>//example.com/foo/bar/code>)), path > t(Path relative to server root (code>/foo/bar/code>)), ), #description > t(The em>Full URL/em> option is best for stopping broken images and links in syndicated content (such as in RSS feeds), but will likely lead to problems if your site is accessible by both HTTP and HTTPS. Paths output with the em>Protocol relative URL/em> option will avoid such problems, but feed readers and other software not using up-to-date standards may be confused by the paths. The em>Path relative to server root/em> option will avoid problems with sites accessible by both HTTP and HTTPS with no compatibility concerns, but will absolutely not fix broken images and links in syndicated content.), #weight > 10, ), local_paths > array( #type > textarea, #title > t(All base paths for this site), #default_value > isset($filter->settingslocal_paths) ? $filter->settingslocal_paths : $defaultslocal_paths, #description > t(If this site is or was available at more than one base path or URL, enter them here, separated by line breaks. For example, if this site is live at code>http://example.com//code> but has a staging version at code>http://dev.example.org/staging//code>, you would enter both those URLs here. If confused, please read a href!docs>Pathologic’s documentation/a> for more information about this option and what it affects., array(!docs > http://drupal.org/node/257026)), #weight > 20, ), );}/** * Pathologic filter callback. * * Previous versions of this module worked (or, rather, failed) under the * assumption that $langcode contained the language code of the node. Sadly, * this isnt the case. * @see http://drupal.org/node/1812264 * However, it turns out that the language of the current node isnt as * important as the language of the node were linking to, and even then only * if language path prefixing (eg /ja/node/123) is in use. REMEMBER THIS IN THE * FUTURE, ALBRIGHT. * * The below code uses the @ operator before parse_url() calls because in PHP * 5.3.2 and earlier, parse_url() causes a warning of parsing fails. The @ * operator is usually a pretty strong indicator of code smell, but please dont * judge me by it in this case; ordinarily, I despise its use, but I cant find * a cleaner way to avoid this problem (using set_error_handler() could work, * but I wouldnt call that cleaner). Fortunately, Drupal 8 will require at * least PHP 5.3.5, so this mess doesnt have to spread into the D8 branch of * Pathologic. * @see https://drupal.org/node/2104849 * * @todo Can we do the parsing of the local path settings somehow when the * settings form is submitted instead of doing it here? */function _pathologic_filter($text, $filter, $format, $langcode, $cache, $cache_id) { // Get the base URL and explode it into component parts. We add these parts // to the exploded local paths settings later. global $base_url; $base_url_parts @parse_url($base_url . /); // Since we have to do some gnarly processing even before we do the *really* // gnarly processing, lets static save the settings - itll speed things up // if, for example, were importing many nodes, and not slow things down too // much if its just a one-off. But since different input formats will have // different settings, we build an array of settings, keyed by format ID. $cached_settings &drupal_static(__FUNCTION__, array()); if (!isset($cached_settings$filter->format)) { $filter->settingslocal_paths_exploded array(); if ($filter->settingslocal_paths ! ) { // Build an array of the exploded local paths for this formats settings. // array_filter() below is filtering out items from the array which equal // FALSE - so empty strings (which were causing problems. // @see http://drupal.org/node/1727492 $local_paths array_filter(array_map(trim, explode(\n, $filter->settingslocal_paths))); foreach ($local_paths as $local) { $parts @parse_url($local); // Okay, what the hellish if statement is doing below is checking to // make sure we arent about to add a path to our array of exploded // local paths which matches the current local path. We consider it // not a match, if… // @todo: This is pretty horrible. Can this be simplified? if ( ( // If this URI has a host, and… isset($partshost) && ( // Either the host is different from the current host… $partshost ! $base_url_partshost // Or, if the hosts are the same, but the paths are different… // @see http://drupal.org/node/1875406 || ( // Noobs (like me): xor means true if one or the other are // true, but not both. (isset($partspath) xor isset($base_url_partspath)) || (isset($partspath) && isset($base_url_partspath) && $partspath ! $base_url_partspath) ) ) ) || // Or… ( // The URI doesnt have a host… !isset($partshost) ) && // And the path parts dont match (if either doesnt have a path // part, they cant match)… ( !isset($partspath) || !isset($base_url_partspath) || $partspath ! $base_url_partspath ) ) { // Add it to the list. $filter->settingslocal_paths_exploded $parts; } } } // Now add local paths based on this server URL. $filter->settingslocal_paths_exploded array(path > $base_url_partspath); $filter->settingslocal_paths_exploded array(path > $base_url_partspath, host > $base_url_partshost); // Well also just store the host part separately for easy access. $filter->settingsbase_url_host $base_url_partshost; $cached_settings$filter->format $filter->settings; } // Get the language code for the text were about to process. $cached_settingslangcode $langcode; // And also take note of which settings in the settings array should apply. $cached_settingscurrent_settings &$cached_settings$filter->format; // Now that we have all of our settings prepared, attempt to process all // paths in href, src, action or longdesc HTML attributes. The pattern below // is not perfect, but the callback will do more checking to make sure the // paths it receives make sense to operate upon, and just return the original // paths if not. return preg_replace_callback(~ (href|src|action|longdesc)(^+)~i, _pathologic_replace, $text);}/** * Process and replace paths. preg_replace_callback() callback. */function _pathologic_replace($matches) { // Get the base path. global $base_path; // Get the settings for the filter. Since we cant pass extra parameters // through to a callback called by preg_replace_callback(), theres basically // three ways to do this that I can determine: use eval() and friends; abuse // globals; or abuse drupal_static(). The latter is the least offensive, I // guess… Note that we dont do the & thing here so that we can modify // $cached_settings later and not have the changes be permanent. $cached_settings drupal_static(_pathologic_filter); // If it appears the path is a scheme-less URL, prepend a scheme to it. // parse_url() cannot properly parse scheme-less URLs. Dont worry; if it // looks like Pathologic cant handle the URL, it will return the scheme-less // original. // @see https://drupal.org/node/1617944 // @see https://drupal.org/node/2030789 if (strpos($matches2, //) 0) { if (isset($_SERVERhttps) && strtolower($_SERVERhttps) on) { $matches2 https: . $matches2; } else { $matches2 http: . $matches2; } } // Now parse the URL after reverting HTML character encoding. // @see http://drupal.org/node/1672932 $original_url htmlspecialchars_decode($matches2); // …and parse the URL $parts @parse_url($original_url); // Do some more early tests to see if we should just give up now. if ( // If parse_url() failed, give up. $parts FALSE || ( // If theres a scheme part and it doesnt look useful, bail out. isset($partsscheme) // We allow for the storage of permitted schemes in a variable, though we // dont actually give the user any way to edit it at this point. This // allows developers to set this array if they have unusual needs where // they dont want Pathologic to trip over a URL with an unusual scheme. // @see http://drupal.org/node/1834308 // files and internal are for Path Filter compatibility. && !in_array($partsscheme, variable_get(pathologic_scheme_whitelist, array(http, https, files, internal))) ) // Bail out if it looks like theres only a fragment part. || (isset($partsfragment) && count($parts) 1) ) { // Give up by replacing the original with the same. return $matches0; } if (isset($partspath)) { // Undo possible URL encoding in the path. // @see http://drupal.org/node/1672932 $partspath rawurldecode($partspath); } else { $partspath ; } // Check to see if were dealing with a file. // @todo Should we still try to do path correction on these files too? if (isset($partsscheme) && $partsscheme files) { // Path Filter files: support. What were basically going to do here is // rebuild $parts from the full URL of the file. $new_parts @parse_url(file_create_url(file_default_scheme() . :// . $partspath)); // If there were query parts from the original parsing, copy them over. if (!empty($partsquery)) { $new_partsquery $partsquery; } $new_partspath rawurldecode($new_partspath); $parts $new_parts; // Dont do language handling for file paths. $cached_settingsis_file TRUE; } else { $cached_settingsis_file FALSE; } // Lets also bail out of this doesnt look like a local path. $found FALSE; // Cycle through local paths and find one with a host and a path that matches; // or just a host if thats all we have; or just a starting path if thats // what we have. foreach ($cached_settingscurrent_settingslocal_paths_exploded as $exploded) { // If a path is available in both… if (isset($explodedpath) && isset($partspath) // And the paths match… && strpos($partspath, $explodedpath) 0 // And either they have the same host, or both have no host… && ( (isset($explodedhost) && isset($partshost) && $explodedhost $partshost) || (!isset($explodedhost) && !isset($partshost)) ) ) { // Remove the shared path from the path. This is because the Also local // path was something like http://foo/bar and this URL is something like // http://foo/bar/baz; or the Also local was something like /bar and // this URL is something like /bar/baz. And we only care about the /baz // part. $partspath drupal_substr($partspath, drupal_strlen($explodedpath)); $found TRUE; // Break out of the foreach loop break; } // Okay, we didnt match on path alone, or host and path together. Can we // match on just host? Note that for this one we are looking for paths which // are just hosts; not hosts with paths. elseif ((isset($partshost) && !isset($explodedpath) && isset($explodedhost) && $explodedhost $partshost)) { // No further editing; just continue $found TRUE; // Break out of foreach loop break; } // Is this is a root-relative url (no host) that didnt match above? // Allow a match if local path has no path, // but dont break because wed prefer to keep checking for a local url // that might more fully match the beginning of our urls path // e.g.: if our url is /foo/bar well mark this as a match for // http://example.com but want to keep searching and would prefer a match // to http://example.com/foo if thats configured as a local path elseif (!isset($partshost) && (!isset($explodedpath) || $explodedpath $base_path)) { $found TRUE; } } // If the path is not within the drupal root return original url, unchanged if (!$found) { return $matches0; } // Okay, format the URL. // If theres still a slash lingering at the start of the path, chop it off. $partspath ltrim($partspath,/); // Examine the query part of the URL. Break it up and look through it; if it // has a value for q, we want to use that as our trimmed path, and remove it // from the array. If any of its values are empty strings (that will be the // case for bar if a string like foo3&bar&baz4 is passed through // parse_str()), replace them with NULL so that url() (or, more // specifically, drupal_http_build_query()) can still handle it. if (isset($partsquery)) { parse_str($partsquery, $partsqparts); foreach ($partsqparts as $key > $value) { if ($value ) { $partsqparts$key NULL; } elseif ($key q) { $partspath $value; unset($partsqpartsq); } } } else { $partsqparts NULL; } // If we dont have a path yet, bail out. if (!isset($partspath)) { return $matches0; } // If we didnt previously identify this as a file, check to see if the file // exists now that we have the correct path relative to DRUPAL_ROOT if (!$cached_settingsis_file) { $cached_settingsis_file !empty($partspath) && is_file(DRUPAL_ROOT . /. $partspath); } // Okay, deal with language stuff. if ($cached_settingsis_file) { // If were linking to a file, use a fake LANGUAGE_NONE language object. // Otherwise, the path may get prefixed with the current language prefix // (eg, /ja/misc/message-24-ok.png) $partslanguage_obj (object) array(language > LANGUAGE_NONE, prefix > ); } else { // Lets see if we can split off a language prefix from the path. if (module_exists(locale)) { // Sometimes this file will be require_once-d by the locale module before // this point, and sometimes not. We require_once it ourselves to be sure. require_once DRUPAL_ROOT . /includes/language.inc; list($language_obj, $path) language_url_split_prefix($partspath, language_list()); if ($language_obj) { $partspath $path; $partslanguage_obj $language_obj; } } } // If we get to this point and $partspath is now an empty string (which // will be the case if the path was originally just /), then we // want to link to front>. if ($partspath ) { $partspath front>; } // Build the parameters we will send to url() $url_params array( path > $partspath, options > array( query > $partsqparts, fragment > isset($partsfragment) ? $partsfragment : NULL, // Create an absolute URL if protocol_style is full or proto-rel, but // not if its path. absolute > $cached_settingscurrent_settingsprotocol_style ! path, // If we seem to have found a language for the path, pass it along to // url(). Otherwise, ignore the language parameter. language > isset($partslanguage_obj) ? $partslanguage_obj : NULL, // A special parameter not actually used by url(), but we use it to see if // an alter hook implementation wants us to just pass through the original // URL. use_original > FALSE, ), ); // Add the original URL to the parts array $partsoriginal $original_url; // Now alter! // @see http://drupal.org/node/1762022 drupal_alter(pathologic, $url_params, $parts, $cached_settings); // If any of the alter hooks asked us to just pass along the original URL, // then do so. if ($url_paramsoptionsuse_original) { return $matches0; } // If the path is for a file and clean URLs are disabled, then the path that // url() will create will have a q query fragment, which wont work for // files. To avoid that, we use this trick to temporarily turn clean URLs on. // This is horrible, but it seems to be the sanest way to do this. // @see http://drupal.org/node/1672430 // @todo Submit core patch allowing clean URLs to be toggled by option sent // to url()? if (!empty($cached_settingsis_file)) { $cached_settingsorig_clean_url !empty($GLOBALSconfclean_url); if (!$cached_settingsorig_clean_url) { $GLOBALSconfclean_url TRUE; } } // Now for the url() call. Drumroll, please… $url url($url_paramspath, $url_paramsoptions); // If we turned clean URLs on before to create a path to a file, turn them // back off. if ($cached_settingsis_file && !$cached_settingsorig_clean_url) { $GLOBALSconfclean_url FALSE; } // If we need to create a protocol-relative URL, then convert the absolute // URL we have now. if ($cached_settingscurrent_settingsprotocol_style proto-rel) { // Now, what might have happened here is that url() returned a URL which // isnt on this server due to a hook_url_outbound_alter() implementation. // We dont want to convert the URL in that case. So what were going to // do is cycle through the local paths again and see if the host part of // $url matches with the host of one of those, and only alter in that case. $url_parts @parse_url($url); if (!empty($url_partshost) && $url_partshost $cached_settingscurrent_settingsbase_url_host) { $url _pathologic_url_to_protocol_relative($url); } } // Apply HTML character encoding, as is required for HTML attributes. // @see http://drupal.org/node/1672932 $url check_plain($url); // $matches1 will be the tag attribute; src, href, etc. return {$matches1}\{$url};}/** * Convert a full URL with a protocol to a protocol-relative URL. * * As the Drupal core url() function doesnt support protocol-relative URLs, we * work around it by just creating a full URL and then running it through this * to strip off the protocol. * * Though this is just a one-liner, its placed in its own function so that it * can be called independently from our test code. */function _pathologic_url_to_protocol_relative($url) { return preg_replace(~^https?://~, //, $url);}!DOCTYPE html PUBLIC -//W3C//DTD XHTML+RDFa 1.0//EN http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd>!--if lt IE 7> html classno-js lt-ie9 lt-ie8 lt-ie7 xmlnshttp://www.w3.org/1999/xhtml xml:langsh versionXHTML+RDFa 1.0 dirltr xmlns:oghttp://ogp.me/ns# xmlns:articlehttp://ogp.me/ns/article# xmlns:bookhttp://ogp.me/ns/book# xmlns:profilehttp://ogp.me/ns/profile# xmlns:videohttp://ogp.me/ns/video# xmlns:producthttp://ogp.me/ns/product# xmlns:contenthttp://purl.org/rss/1.0/modules/content/ xmlns:dchttp://purl.org/dc/terms/ xmlns:foafhttp://xmlns.com/foaf/0.1/ xmlns:rdfshttp://www.w3.org/2000/01/rdf-schema# xmlns:siochttp://rdfs.org/sioc/ns# xmlns:siocthttp://rdfs.org/sioc/types# xmlns:skoshttp://www.w3.org/2004/02/skos/core# xmlns:xsdhttp://www.w3.org/2001/XMLSchema#> !endif-->!--if IE 7> html classno-js lt-ie10 lt-ie9 lt-ie8 ie7 xmlnshttp://www.w3.org/1999/xhtml xml:langsh versionXHTML+RDFa 1.0 dirltr xmlns:oghttp://ogp.me/ns# xmlns:articlehttp://ogp.me/ns/article# xmlns:bookhttp://ogp.me/ns/book# xmlns:profilehttp://ogp.me/ns/profile# xmlns:videohttp://ogp.me/ns/video# xmlns:producthttp://ogp.me/ns/product# xmlns:contenthttp://purl.org/rss/1.0/modules/content/ xmlns:dchttp://purl.org/dc/terms/ xmlns:foafhttp://xmlns.com/foaf/0.1/ xmlns:rdfshttp://www.w3.org/2000/01/rdf-schema# xmlns:siochttp://rdfs.org/sioc/ns# xmlns:siocthttp://rdfs.org/sioc/types# xmlns:skoshttp://www.w3.org/2004/02/skos/core# xmlns:xsdhttp://www.w3.org/2001/XMLSchema#> !endif-->!--if IE 8> html classno-js lt-ie10 lt-ie9 ie8 xmlnshttp://www.w3.org/1999/xhtml xml:langsh versionXHTML+RDFa 1.0 dirltr xmlns:oghttp://ogp.me/ns# xmlns:articlehttp://ogp.me/ns/article# xmlns:bookhttp://ogp.me/ns/book# xmlns:profilehttp://ogp.me/ns/profile# xmlns:videohttp://ogp.me/ns/video# xmlns:producthttp://ogp.me/ns/product# xmlns:contenthttp://purl.org/rss/1.0/modules/content/ xmlns:dchttp://purl.org/dc/terms/ xmlns:foafhttp://xmlns.com/foaf/0.1/ xmlns:rdfshttp://www.w3.org/2000/01/rdf-schema# xmlns:siochttp://rdfs.org/sioc/ns# xmlns:siocthttp://rdfs.org/sioc/types# xmlns:skoshttp://www.w3.org/2004/02/skos/core# xmlns:xsdhttp://www.w3.org/2001/XMLSchema#> !endif-->!--if IE 9> html classno-js lt-ie10 ie9 xmlnshttp://www.w3.org/1999/xhtml xml:langsh versionXHTML+RDFa 1.0 dirltr xmlns:oghttp://ogp.me/ns# xmlns:articlehttp://ogp.me/ns/article# xmlns:bookhttp://ogp.me/ns/book# xmlns:profilehttp://ogp.me/ns/profile# xmlns:videohttp://ogp.me/ns/video# xmlns:producthttp://ogp.me/ns/product# xmlns:contenthttp://purl.org/rss/1.0/modules/content/ xmlns:dchttp://purl.org/dc/terms/ xmlns:foafhttp://xmlns.com/foaf/0.1/ xmlns:rdfshttp://www.w3.org/2000/01/rdf-schema# xmlns:siochttp://rdfs.org/sioc/ns# xmlns:siocthttp://rdfs.org/sioc/types# xmlns:skoshttp://www.w3.org/2004/02/skos/core# xmlns:xsdhttp://www.w3.org/2001/XMLSchema#> !endif-->!--if gt IE 9>!--> html classno-js xmlnshttp://www.w3.org/1999/xhtml xml:langsh versionXHTML+RDFa 1.0 dirltr xmlns:oghttp://ogp.me/ns# xmlns:articlehttp://ogp.me/ns/article# xmlns:bookhttp://ogp.me/ns/book# xmlns:profilehttp://ogp.me/ns/profile# xmlns:videohttp://ogp.me/ns/video# xmlns:producthttp://ogp.me/ns/product# xmlns:contenthttp://purl.org/rss/1.0/modules/content/ xmlns:dchttp://purl.org/dc/terms/ xmlns:foafhttp://xmlns.com/foaf/0.1/ xmlns:rdfshttp://www.w3.org/2000/01/rdf-schema# xmlns:siochttp://rdfs.org/sioc/ns# xmlns:siocthttp://rdfs.org/sioc/types# xmlns:skoshttp://www.w3.org/2004/02/skos/core# xmlns:xsdhttp://www.w3.org/2001/XMLSchema#> !--!endif-->head profilehttp://www.w3.org/1999/xhtml/vocab> !-- no-js --> script typetext/javascript>(function(H){H.classNameH.className.replace(/\bno-js\b/,js)})(document.documentElement)/script> !-- X-UA-Compatible --> meta http-equivX-UA-Compatible contentIEedge,chrome1 /> meta http-equivContent-Type contenttext/html; charsetutf-8 />link relshortcut icon hrefhttps://www.euroinfo.me/sites/euroinfo.me/themes/euroinfo/favicon.ico typeimage/vnd.microsoft.icon />meta namegenerator contentDrupal 7 (http://drupal.org) />link relcanonical hrefhttps://www.euroinfo.me/ />link relshortlink hrefhttps://www.euroinfo.me/ />meta propertyog:site_name contentEuroinfo CG />meta propertyog:type contentwebsite />meta propertyog:url contenthttps://www.euroinfo.me/ />meta propertyog:title contentEuroinfo CG />meta propertyog:description contentEvropski centar za informacije i inovacije Crne Gore /> title>Euroinfo CG | Evropski centar za informacije i inovacije Crne Gore/title> link hrefhttp://fonts.googleapis.com/css?familyOpen+Sans:400,600,700&subsetlatin,latin-ext relstylesheet typetext/css> style typetext/css mediaall>@import url(https://www.euroinfo.me/modules/system/system.base.css?pfpmk1);@import url(https://www.euroinfo.me/modules/system/system.menus.css?pfpmk1);@import url(https://www.euroinfo.me/modules/system/system.messages.css?pfpmk1);@import url(https://www.euroinfo.me/modules/system/system.theme.css?pfpmk1);/style>style typetext/css mediaall>@import url(https://www.euroinfo.me/sites/euroinfo.me/modules/views_slideshow/views_slideshow.css?pfpmk1);/style>style typetext/css mediaall>@import url(https://www.euroinfo.me/sites/all/modules/calendar/css/calendar_multiday.css?pfpmk1);@import url(https://www.euroinfo.me/modules/comment/comment.css?pfpmk1);@import url(https://www.euroinfo.me/sites/all/modules/date/date_api/date.css?pfpmk1);@import url(https://www.euroinfo.me/sites/all/modules/date/date_popup/themes/datepicker.1.7.css?pfpmk1);@import url(https://www.euroinfo.me/sites/all/modules/date/date_repeat_field/date_repeat_field.css?pfpmk1);@import url(https://www.euroinfo.me/modules/field/theme/field.css?pfpmk1);@import url(https://www.euroinfo.me/modules/node/node.css?pfpmk1);@import url(https://www.euroinfo.me/modules/poll/poll.css?pfpmk1);@import url(https://www.euroinfo.me/modules/search/search.css?pfpmk1);@import url(https://www.euroinfo.me/modules/user/user.css?pfpmk1);@import url(https://www.euroinfo.me/sites/euroinfo.me/modules/views/css/views.css?pfpmk1);@import url(https://www.euroinfo.me/sites/euroinfo.me/modules/ckeditor/css/ckeditor.css?pfpmk1);/style>style typetext/css mediaall>@import url(https://www.euroinfo.me/sites/all/modules/bild_menu_api/css/om-lists.css?pfpmk1);@import url(https://www.euroinfo.me/sites/all/libraries/colorbox/epcg/colorbox.css?pfpmk1);@import url(https://www.euroinfo.me/sites/euroinfo.me/modules/ctools/css/ctools.css?pfpmk1);@import url(https://www.euroinfo.me/sites/euroinfo.me/modules/panels/css/panels.css?pfpmk1);@import url(https://www.euroinfo.me/sites/all/modules/video/css/video.css?pfpmk1);@import url(https://www.euroinfo.me/sites/euroinfo.me/themes/euroinfo/layouts/stacked/stacked.css?pfpmk1);@import url(https://www.euroinfo.me/sites/euroinfo.me/modules/views_slideshow/views_slideshow_controls_text.css?pfpmk1);@import url(https://www.euroinfo.me/sites/euroinfo.me/modules/views_slideshow/contrib/views_slideshow_cycle/views_slideshow_cycle.css?pfpmk1);@import url(https://www.euroinfo.me/sites/euroinfo.me/modules/quicktabs/css/quicktabs.css?pfpmk1);@import url(https://www.euroinfo.me/modules/locale/locale.css?pfpmk1);/style>!--if lt IE 10>style typetext/css mediaall>@import url(https://www.euroinfo.me/sites/euroinfo.me/files/ctools/css/98488e78c5360d94c615c0360877d4f2.css?pfpmk1);/style>!endif-->style typetext/css mediaall>@import url(https://www.euroinfo.me/sites/euroinfo.me/libraries/superfish/css/superfish.css?pfpmk1);/style>style typetext/css mediaall>@import url(https://www.euroinfo.me/sites/euroinfo.me/themes/euroinfo/css/global.css?pfpmk1);@import url(https://www.euroinfo.me/sites/euroinfo.me/themes/euroinfo/css/custom.css?pfpmk1);/style> !-- AddThis --> script typetext/javascript> var addthis_config { // data_track_addressbar: true, ui_language: bs, services_overlay:email, more, ui_click: true }; /script> script typetext/javascript srchttp://s7.addthis.com/js/250/addthis_widget.js#pubidra-50362a663023f6b0>/script> script typetext/javascript srchttps://www.euroinfo.me/sites/euroinfo.me/files/js/js_J1rtwNzMk13rhQO-5-4zl2aMiM2Hk2WjXqqNcoy0d6U.js>/script>script typetext/javascript srchttps://www.euroinfo.me/sites/euroinfo.me/files/js/js_02uGcyv1-im6cSoyQ1UvAwDT2RJAeNzU3mCSxI2TlUE.js>/script>script typetext/javascript srchttps://www.euroinfo.me/sites/euroinfo.me/files/js/js_R9UbiVw2xuTUI0GZoaqMDOdX0lrZtgX-ono8RVOUEVc.js>/script>script typetext/javascript srchttps://www.euroinfo.me/sites/euroinfo.me/files/js/js_wulgkYpZlgDEZROpBgNk1K26TVgG2UcKovbrjBNhqSI.js>/script>script typetext/javascript srchttps://www.euroinfo.me/sites/euroinfo.me/files/js/js_-jAMgttTdeojQWbHTJRfNfjSXnDjD5zCKb5N9m-SxVs.js>/script>script typetext/javascript>!--//-->!CDATA//>!--jQuery.extend(Drupal.settings, {basePath:\/,pathPrefix:,ajaxPageState:{theme:euroinfo,theme_token:2fthg_uzacE67Jpf2iTu64SxRkbQKGuj3eoKeIv-hqc,js:{sites\/euroinfo.me\/modules\/clientside_validation\/clientside_validation.ie8.js:1,sites\/euroinfo.me\/modules\/clientside_validation\/clientside_validation.js:1,sites\/all\/modules\/jquery_update\/replace\/jquery\/1.7\/jquery.min.js:1,misc\/jquery.once.js:1,misc\/drupal.js:1,sites\/euroinfo.me\/modules\/views_slideshow\/js\/views_slideshow.js:1,sites\/all\/modules\/jquery_update\/replace\/misc\/jquery.form.min.js:1,sites\/all\/modules\/jquery_update\/replace\/ui\/external\/jquery.cookie.js:1,misc\/ajax.js:1,sites\/all\/modules\/admin_menu\/admin_devel\/admin_devel.js:1,misc\/progress.js:1,public:\/\/languages\/sh_DW0JLvq0wvva5Dp10dN_6zZnfobf_B-Syjp5U2VI_mw.js:1,sites\/all\/modules\/bild_menu_api\/js\/custom.js:1,sites\/euroinfo.me\/libraries\/colorbox\/jquery.colorbox-min.js:1,sites\/all\/modules\/colorbox\/js\/colorbox.js:1,sites\/all\/modules\/colorbox\/js\/colorbox_load.js:1,sites\/all\/modules\/video\/js\/video.js:1,sites\/euroinfo.me\/modules\/select_with_style\/select_with_style\/select_with_style.js:1,sites\/euroinfo.me\/modules\/views\/js\/base.js:1,sites\/euroinfo.me\/modules\/quicktabs\/js\/quicktabs.js:1,sites\/euroinfo.me\/modules\/views\/js\/ajax_view.js:1,sites\/all\/libraries\/jquery.cycle\/jquery.cycle.all.min.js:1,sites\/euroinfo.me\/modules\/views_slideshow\/contrib\/views_slideshow_cycle\/js\/views_slideshow_cycle.js:1,sites\/all\/libraries\/json2\/json2.js:1,sites\/euroinfo.me\/modules\/clientside_validation\/jquery-validate\/jquery.validate.js:1,sites\/euroinfo.drupal-testing.bildhosting.com\/libraries\/superfish\/jquery.hoverIntent.minified.js:1,sites\/euroinfo.drupal-testing.bildhosting.com\/libraries\/superfish\/sfsmallscreen.js:1,sites\/euroinfo.drupal-testing.bildhosting.com\/libraries\/superfish\/supposition.js:1,sites\/euroinfo.drupal-testing.bildhosting.com\/libraries\/superfish\/superfish.js:1,sites\/euroinfo.drupal-testing.bildhosting.com\/libraries\/superfish\/supersubs.js:1,sites\/euroinfo.me\/modules\/superfish\/superfish.js:1,sites\/euroinfo.me\/themes\/euroinfo\/js\/jquery.fontscale.js:1,sites\/euroinfo.me\/themes\/euroinfo\/js\/jquery.svg-pietimer.js:1,sites\/euroinfo.me\/themes\/euroinfo\/js\/featured-slideshow-pietimer.js:1,sites\/euroinfo.me\/themes\/euroinfo\/js\/global.js:1},css:{modules\/system\/system.base.css:1,modules\/system\/system.menus.css:1,modules\/system\/system.messages.css:1,modules\/system\/system.theme.css:1,sites\/euroinfo.me\/modules\/views_slideshow\/views_slideshow.css:1,sites\/all\/modules\/calendar\/css\/calendar_multiday.css:1,modules\/comment\/comment.css:1,sites\/all\/modules\/date\/date_api\/date.css:1,sites\/all\/modules\/date\/date_popup\/themes\/datepicker.1.7.css:1,sites\/all\/modules\/date\/date_repeat_field\/date_repeat_field.css:1,modules\/field\/theme\/field.css:1,modules\/node\/node.css:1,modules\/poll\/poll.css:1,modules\/search\/search.css:1,modules\/user\/user.css:1,sites\/euroinfo.me\/modules\/views\/css\/views.css:1,sites\/euroinfo.me\/modules\/ckeditor\/css\/ckeditor.css:1,sites\/all\/modules\/bild_menu_api\/css\/om-lists.css:1,sites\/all\/libraries\/colorbox\/epcg\/colorbox.css:1,sites\/euroinfo.me\/modules\/ctools\/css\/ctools.css:1,sites\/euroinfo.me\/modules\/panels\/css\/panels.css:1,sites\/all\/modules\/video\/css\/video.css:1,sites\/euroinfo.me\/themes\/euroinfo\/layouts\/stacked\/stacked.css:1,sites\/euroinfo.me\/modules\/views_slideshow\/views_slideshow_controls_text.css:1,sites\/euroinfo.me\/modules\/views_slideshow\/contrib\/views_slideshow_cycle\/views_slideshow_cycle.css:1,sites\/euroinfo.me\/modules\/quicktabs\/css\/quicktabs.css:1,modules\/locale\/locale.css:1,public:\/\/ctools\/css\/98488e78c5360d94c615c0360877d4f2.css:1,sites\/euroinfo.me\/libraries\/superfish\/css\/superfish.css:1,sites\/euroinfo.me\/themes\/euroinfo\/css\/global.css:1,sites\/euroinfo.me\/themes\/euroinfo\/css\/custom.css:1}},colorbox:{opacity:0.85,current:{current} of {total},previous:\u00ab Prev,next:Next \u00bb,close:Close,maxWidth:98%,maxHeight:98%,fixed:true,mobiledetect:true,mobiledevicewidth:480px},viewsSlideshow:{front_page_featured_articles-panel_pane_1_1:{methods:{goToSlide:viewsSlideshowPager,viewsSlideshowSlideCounter,viewsSlideshowCycle,nextSlide:viewsSlideshowPager,viewsSlideshowSlideCounter,viewsSlideshowCycle,pause:viewsSlideshowControls,viewsSlideshowCycle,play:viewsSlideshowControls,viewsSlideshowCycle,previousSlide:viewsSlideshowPager,viewsSlideshowSlideCounter,viewsSlideshowCycle,transitionBegin:viewsSlideshowPager,viewsSlideshowSlideCounter,transitionEnd:},paused:0},multimedia_tabs-panel_pane_3_1:{methods:{goToSlide:viewsSlideshowPager,viewsSlideshowSlideCounter,viewsSlideshowCycle,nextSlide:viewsSlideshowPager,viewsSlideshowSlideCounter,viewsSlideshowCycle,pause:viewsSlideshowControls,viewsSlideshowCycle,play:viewsSlideshowControls,viewsSlideshowCycle,previousSlide:viewsSlideshowPager,viewsSlideshowSlideCounter,viewsSlideshowCycle,transitionBegin:viewsSlideshowPager,viewsSlideshowSlideCounter,transitionEnd:},paused:0},multimedia_tabs-panel_pane_1_1:{methods:{goToSlide:viewsSlideshowPager,viewsSlideshowSlideCounter,viewsSlideshowCycle,nextSlide:viewsSlideshowPager,viewsSlideshowSlideCounter,viewsSlideshowCycle,pause:viewsSlideshowControls,viewsSlideshowCycle,play:viewsSlideshowControls,viewsSlideshowCycle,previousSlide:viewsSlideshowPager,viewsSlideshowSlideCounter,viewsSlideshowCycle,transitionBegin:viewsSlideshowPager,viewsSlideshowSlideCounter,transitionEnd:},paused:0},multimedia_tabs-panel_pane_2_1:{methods:{goToSlide:viewsSlideshowPager,viewsSlideshowSlideCounter,viewsSlideshowCycle,nextSlide:viewsSlideshowPager,viewsSlideshowSlideCounter,viewsSlideshowCycle,pause:viewsSlideshowControls,viewsSlideshowCycle,play:viewsSlideshowControls,viewsSlideshowCycle,previousSlide:viewsSlideshowPager,viewsSlideshowSlideCounter,viewsSlideshowCycle,transitionBegin:viewsSlideshowPager,viewsSlideshowSlideCounter,transitionEnd:},paused:0}},viewsSlideshowPager:{front_page_featured_articles-panel_pane_1_1:{bottom:{type:viewsSlideshowPagerFields,master_pager:0}}},viewsSlideshowPagerFields:{front_page_featured_articles-panel_pane_1_1:{bottom:{activatePauseOnHover:0}}},viewsSlideshowCycle:{#views_slideshow_cycle_main_front_page_featured_articles-panel_pane_1_1:{num_divs:3,id_prefix:#views_slideshow_cycle_main_,div_prefix:#views_slideshow_cycle_div_,vss_id:front_page_featured_articles-panel_pane_1_1,effect:fade,transition_advanced:1,timeout:0,speed:700,delay:0,sync:1,random:0,pause:1,pause_on_click:1,play_on_hover:0,action_advanced:1,start_paused:0,remember_slide:0,remember_slide_days:1,pause_in_middle:0,pause_when_hidden:0,pause_when_hidden_type:full,amount_allowed_visible:,nowrap:0,pause_after_slideshow:0,fixed_height:1,items_per_slide:1,wait_for_image_load:1,wait_for_image_load_timeout:3000,cleartype:0,cleartypenobg:0,advanced_options:{\u0022pauseOnPagerHover\u0022:\u0022true\u0022,\u0022pause\u0022:\u0022true\u0022},advanced_options_choices:0,advanced_options_entry:},#views_slideshow_cycle_main_multimedia_tabs-panel_pane_3_1:{num_divs:4,id_prefix:#views_slideshow_cycle_main_,div_prefix:#views_slideshow_cycle_div_,vss_id:multimedia_tabs-panel_pane_3_1,effect:fade,transition_advanced:1,timeout:0,speed:500,delay:0,sync:1,random:0,pause:1,pause_on_click:1,play_on_hover:0,action_advanced:1,start_paused:0,remember_slide:0,remember_slide_days:1,pause_in_middle:0,pause_when_hidden:0,pause_when_hidden_type:full,amount_allowed_visible:,nowrap:0,pause_after_slideshow:0,fixed_height:1,items_per_slide:4,wait_for_image_load:1,wait_for_image_load_timeout:3000,cleartype:0,cleartypenobg:0,advanced_options:{},advanced_options_choices:0,advanced_options_entry:},#views_slideshow_cycle_main_multimedia_tabs-panel_pane_1_1:{num_divs:7,id_prefix:#views_slideshow_cycle_main_,div_prefix:#views_slideshow_cycle_div_,vss_id:multimedia_tabs-panel_pane_1_1,effect:fade,transition_advanced:1,timeout:0,speed:500,delay:0,sync:1,random:0,pause:1,pause_on_click:1,play_on_hover:0,action_advanced:1,start_paused:0,remember_slide:0,remember_slide_days:1,pause_in_middle:0,pause_when_hidden:0,pause_when_hidden_type:full,amount_allowed_visible:,nowrap:0,pause_after_slideshow:0,fixed_height:1,items_per_slide:4,wait_for_image_load:1,wait_for_image_load_timeout:3000,cleartype:0,cleartypenobg:0,advanced_options:{},advanced_options_choices:0,advanced_options_entry:},#views_slideshow_cycle_main_multimedia_tabs-panel_pane_2_1:{num_divs:3,id_prefix:#views_slideshow_cycle_main_,div_prefix:#views_slideshow_cycle_div_,vss_id:multimedia_tabs-panel_pane_2_1,effect:uncover,transition_advanced:1,timeout:0,speed:700,delay:0,sync:1,random:0,pause:1,pause_on_click:1,play_on_hover:0,action_advanced:1,start_paused:0,remember_slide:0,remember_slide_days:1,pause_in_middle:0,pause_when_hidden:0,pause_when_hidden_type:full,amount_allowed_visible:,nowrap:0,pause_after_slideshow:0,fixed_height:1,items_per_slide:1,wait_for_image_load:1,wait_for_image_load_timeout:3000,cleartype:0,cleartypenobg:0,advanced_options:{},advanced_options_choices:0,advanced_options_entry:}},viewsSlideshowControls:{multimedia_tabs-panel_pane_3_1:{bottom:{type:viewsSlideshowControlsText}},multimedia_tabs-panel_pane_1_1:{bottom:{type:viewsSlideshowControlsText}},multimedia_tabs-panel_pane_2_1:{bottom:{type:viewsSlideshowControlsText}}},quicktabs:{qt_multimedija:{name:multimedija,tabs:{vid:multimedia_tabs,display:panel_pane_3,args:,use_title:0,view_path:home,view_dom_id:1,ajax_args:,actual_args:},{vid:multimedia_tabs,display:panel_pane_1,args:,use_title:0,view_path:home,view_dom_id:2,ajax_args:,actual_args:},{vid:multimedia_tabs,display:panel_pane_2,args:,use_title:0,view_path:home,view_dom_id:3,ajax_args:,actual_args:},viewsSlideshowCycle:{#views_slideshow_cycle_main_multimedia_tabs-panel_pane_2_1:{num_divs:3,id_prefix:#views_slideshow_cycle_main_,div_prefix:#views_slideshow_cycle_div_,vss_id:multimedia_tabs-panel_pane_2_1,effect:uncover,transition_advanced:1,timeout:0,speed:700,delay:0,sync:1,random:0,pause:1,pause_on_click:1,play_on_hover:0,action_advanced:1,start_paused:0,remember_slide:0,remember_slide_days:1,pause_in_middle:0,pause_when_hidden:0,pause_when_hidden_type:full,amount_allowed_visible:,nowrap:0,pause_after_slideshow:0,fixed_height:1,items_per_slide:1,wait_for_image_load:1,wait_for_image_load_timeout:3000,cleartype:0,cleartypenobg:0,advanced_options:{},advanced_options_choices:0,advanced_options_entry:}}}},superfish:{1:{id:1,sf:{delay:200,animation:{opacity:show},speed:150,autoArrows:false,dropShadows:false,disableHI:false},plugins:{smallscreen:{mode:window_width,addSelected:false,menuClasses:false,hyperlinkClasses:false,title:Main menu},supposition:true,bgiframe:false,supersubs:{minWidth:12,maxWidth:27,extraWidth:1}}}},urlIsAjaxTrusted:{\/:true},clientsideValidation:{forms:{apachesolr-panels-search-block:{errorPlacement:3,general:{errorClass:error,wrapper:li,validateTabs:0,scrollTo:1,scrollSpeed:1000,disableHtml5Validation:1,validateOnBlur:1,validateOnBlurAlways:0,validateOnKeyUp:1,validateBeforeAjax:0,validateOnSubmit:1,showMessages:0,errorElement:label},rules:{apachesolr_panels_search_form:{maxlength:128,messages:{maxlength:Pretraga field has to have maximum 128 values.}}}}},general:{usexregxp:0,months:{January:1,Jan:1,February:2,Feb:2,March:3,Mar:3,April:4,Apr:4,May:5,June:6,Jun:6,July:7,Jul:7,August:8,Aug:8,September:9,Sep:9,October:10,Oct:10,November:11,Nov:11,December:12,Dec:12}},groups:{apachesolr-panels-search-block:{}}}});//-->!>/script>/head>body classhtml front not-logged-in no-sidebars page-home i18n-sh > div classmain-container> div idheader classheader> div classheader-top-container> div idheader_top classregion region-header-top clearfix> div idblock-superfish-1 classblock block-superfish main-menu> div classcontent> ul idsuperfish-1 classmenu sf-menu sf-main-menu sf-horizontal sf-style-none sf-total-items-7 sf-parent-items-6 sf-single-items-1>li idmenu-224-1 classactive-trail first odd sf-item-1 sf-depth-1 sf-no-children>a href/ classsf-depth-1 active>Početna/a>/li>li idmenu-814-1 classmiddle even sf-item-2 sf-depth-1 sf-total-children-2 sf-parent-children-0 sf-single-children-2 menuparent>a href/menu-dummy classprevent-click sf-depth-1 menuparent>O nama/a>ul>li idmenu-823-1 classfirst odd sf-item-1 sf-depth-2 sf-no-children>a href/o-een-mrezi classsf-depth-2>O EEN mreži/a>/li>li idmenu-826-1 classlast even sf-item-2 sf-depth-2 sf-no-children>a href/o-konzorcijumu classsf-depth-2>O konzorcijumu/a>/li>/ul>/li>li idmenu-835-1 classmiddle odd sf-item-3 sf-depth-1 sf-total-children-2 sf-parent-children-0 sf-single-children-2 menuparent>a href/menu-dummy classprevent-click sf-depth-1 menuparent>Aktuelnosti/a>ul>li idmenu-840-1 classfirst odd sf-item-1 sf-depth-2 sf-no-children>a href/vijesti classsf-depth-2>Vijesti/a>/li>li idmenu-841-1 classlast even sf-item-2 sf-depth-2 sf-no-children>a href/najave classsf-depth-2>Najave/a>/li>/ul>/li>li idmenu-857-1 classmiddle even sf-item-4 sf-depth-1 sf-total-children-5 sf-parent-children-0 sf-single-children-5 menuparent>a href/menu-dummy classprevent-click sf-depth-1 menuparent>Usluge/a>ul>li idmenu-2902-1 classfirst odd sf-item-1 sf-depth-2 sf-no-children>a href/ponude-za-saradnju classsf-depth-2>Ponude za saradnju/a>/li>li idmenu-2907-1 classmiddle even sf-item-2 sf-depth-2 sf-no-children>a href/node/add/bcd-forma classsf-depth-2>Prijavi preduzeće/a>/li>li idmenu-2903-1 classmiddle odd sf-item-3 sf-depth-2 sf-no-children>a hrefhttps://een.ec.europa.eu/tools/services/SearchCenter/Search/ProfileSimpleSearch?orgaIdME00231 target_blank classsf-depth-2>Pronađi partnera/a>/li>li idmenu-2910-1 classmiddle even sf-item-4 sf-depth-2 sf-no-children>a href/najave/poslovni-susreti classsf-depth-2>Poslovni susreti/a>/li>li idmenu-3108-1 classlast odd sf-item-5 sf-depth-2 sf-no-children>a href/kalendar-sajmova classsf-depth-2>Kalendar sajmova/a>/li>/ul>/li>li idmenu-1249-1 classmiddle odd sf-item-5 sf-depth-1 sf-total-children-3 sf-parent-children-0 sf-single-children-3 menuparent>a href/multimedia classsf-depth-1 menuparent>Multimedija/a>ul>li idmenu-1893-1 classfirst odd sf-item-1 sf-depth-2 sf-no-children>a href/multimedia/fotografije classsf-depth-2>Fotografije/a>/li>li idmenu-1896-1 classmiddle even sf-item-2 sf-depth-2 sf-no-children>a href/multimedia/publikacije classsf-depth-2>Publikacije/a>/li>li idmenu-3213-1 classlast odd sf-item-3 sf-depth-2 sf-no-children>a href/multimedija/video classsf-depth-2>Video/a>/li>/ul>/li>li idmenu-1385-1 classmiddle even sf-item-6 sf-depth-1 sf-total-children-2 sf-parent-children-2 sf-single-children-0 menuparent>a href/javni-pozivi classsf-depth-1 menuparent>Javni pozivi/a>ul>li idmenu-3434-1 classfirst odd sf-item-1 sf-depth-2 sf-total-children-13 sf-parent-children-0 sf-single-children-13 menuparent>a href/javni-pozivi/horizon-2020 classsf-depth-2 menuparent>Horizon 2020/a>ul>li idmenu-3539-1 classfirst odd sf-item-1 sf-depth-3 sf-no-children>a href/vijesti/noviteti-na-participant-portalu classsf-depth-3>Noviteti na Participant Portalu/a>/li>li idmenu-3528-1 classmiddle even sf-item-2 sf-depth-3 sf-no-children>a href/javni-pozivi/uputstvo-za-apliciranje-0 classsf-depth-3>Uputstvo za apliciranje/a>/li>li idmenu-3529-1 classmiddle odd sf-item-3 sf-depth-3 sf-no-children>a href/javni-pozivi/sta-je-msp-instrument classsf-depth-3>Šta je MSP Instrument/a>/li>li idmenu-3525-1 classmiddle even sf-item-4 sf-depth-3 sf-no-children>a href/javni-pozivi/msp-instrumenti-pozivi-po-oblastima classsf-depth-3>MSP Instrumenti - pozivi po oblastima/a>/li>li idmenu-3538-1 classmiddle odd sf-item-5 sf-depth-3 sf-no-children>a href/vijesti/iz-een-mreze/novi-pozivi-u-okviru-horizon-2020-programa-0 classsf-depth-3>Novi pozivi u okviru Horizon 2020 programa/a>/li>li idmenu-3437-1 classmiddle even sf-item-6 sf-depth-3 sf-no-children>a href/javni-pozivi/innovative-mobile-e-government-applications-smes classsf-depth-3>Innovative mobile e-government applications by SMEs/a>/li>li idmenu-3438-1 classmiddle odd sf-item-7 sf-depth-3 sf-no-children>a href/javni-pozivi/boosting-potential-small-businesses-eco-innovation-and-sustainable-supply-raw-materials classsf-depth-3>Boosting the potential of small businesses for eco-innovation and a sustainable supply of raw materials/a>/li>li idmenu-3439-1 classmiddle even sf-item-8 sf-depth-3 sf-no-children>a href/javni-pozivi/small-business-innovation-research-transport classsf-depth-3>Small business innovation research for Transport/a>/li>li idmenu-3440-1 classmiddle odd sf-item-9 sf-depth-3 sf-no-children>a href/javni-pozivi/sme-business-model-innovation classsf-depth-3>SME business model innovation/a>/li>li idmenu-3441-1 classmiddle even sf-item-10 sf-depth-3 sf-no-children>a href/javni-pozivi/poziv-za-savjetnike-coach-activities-u-vezi-pruzanja-savjetodavnih-i-strucnih-savjeta classsf-depth-3>Poziv za savjetnike u vezi pružanja savjetodavnih i stručnih savjeta malih i srednjim preduzećima u okviru Horizon 2020/a>/li>li idmenu-3442-1 classmiddle odd sf-item-11 sf-depth-3 sf-no-children>a href/javni-pozivi/sme-boosting-biotechnology-based-industrial-processes-driving-competitiveness-and classsf-depth-3>SME boosting biotechnology-based industrial processes driving competitiveness and sustainability/a>/li>li idmenu-3436-1 classmiddle even sf-item-12 sf-depth-3 sf-no-children>a href/javni-pozivi/mogucnosti-za-mala-i-srednja-preduzeca-u-okviru-horizon-2020 classsf-depth-3>Mogućnosti za mala i srednja preduzeća u okviru Horizon 2020/a>/li>li idmenu-3530-1 classlast odd sf-item-13 sf-depth-3 sf-no-children>a href/javni-pozivi/poljoprivreda-2016 classsf-depth-3>Poljoprivreda 2016/a>/li>/ul>/li>li idmenu-3435-1 classlast even sf-item-2 sf-depth-2 sf-total-children-9 sf-parent-children-0 sf-single-children-9 menuparent>a href/javni-pozivi/cosme classsf-depth-2 menuparent>COSME/a>ul>li idmenu-3527-1 classfirst odd sf-item-1 sf-depth-3 sf-no-children>a href/javni-pozivi/uputstvo-za-apliciranje classsf-depth-3>Uputstvo za apliciranje/a>/li>li idmenu-6879-1 classmiddle even sf-item-2 sf-depth-3 sf-no-children>a href/javni-pozivi/otvoren-poziv-za-dostavljanje-projektnih-prijedloga-evropskom-programu-klastera classsf-depth-3>Otvoren poziv za dostavljanje projektnih prijedloga Evropskom programu klastera izvrsnosti/a>/li>li idmenu-3533-1 classmiddle odd sf-item-3 sf-depth-3 sf-no-children>a href/javni-pozivi/supporting-promotion-and-development-transnational-thematic-tourism-products-linked classsf-depth-3>Supporting the promotion and development of transnational thematic tourism products linked to cultural and creative industries/a>/li>li idmenu-3534-1 classmiddle even sf-item-4 sf-depth-3 sf-no-children>a href/javni-pozivi/cosme-javni-poziv-za-podrsku-u-oblasti-modne-industrije-i-turizma classsf-depth-3>COSME javni poziv za podršku u oblasti modne industrije i turizma/a>/li>li idmenu-3536-1 classmiddle odd sf-item-5 sf-depth-3 sf-no-children>a href/javni-pozivi/european-incubation-networks-creativity-driven-innovation classsf-depth-3>European incubation network(s) for creativity-driven innovation/a>/li>li idmenu-3535-1 classmiddle even sf-item-6 sf-depth-3 sf-no-children>a href/javni-pozivi/training-sme-friendly-policies-central-purchasing-bodies-cpbs classsf-depth-3>Training for SME-friendly policies in Central Purchasing Bodies (CPBs)/a>/li>li idmenu-3526-1 classmiddle odd sf-item-7 sf-depth-3 sf-no-children>a href/vijesti/eif-objavio-pozive-za-iskazivanje-interesa-finansijskih-posrednika-za-finansiranje-msp classsf-depth-3>EIF objavio pozive za iskazivanje interesa finansijskih posrednika za finansiranje MSP/a>/li>li idmenu-3445-1 classmiddle even sf-item-8 sf-depth-3 sf-no-children>a href/javni-pozivi/facilitating-eu-transnational-tourism-flows-seniors-and-young-people-low-and-medium classsf-depth-3>Facilitating EU transnational tourism flows for seniors and young people in the low and medium seasons/a>/li>li idmenu-3531-1 classlast odd sf-item-9 sf-depth-3 sf-no-children>a href/javni-pozivi/improving-smes-access-public-procurement classsf-depth-3>Improving SMEs' access to public procurement/a>/li>/ul>/li>/ul>/li>li idmenu-2827-1 classlast odd sf-item-7 sf-depth-1 sf-total-children-4 sf-parent-children-0 sf-single-children-4 menuparent>a href/kontakt/direkcija-za-razvoj-malih-i-srednjih-preduzeca-evropski-centar-za-informacije-i-inovacije classsf-depth-1 menuparent>Kontakt/a>ul>li idmenu-2826-1 classfirst odd sf-item-1 sf-depth-2 sf-no-children>a href/kontakt/direkcija-za-razvoj-malih-i-srednjih-preduzeca-evropski-centar-za-informacije-i-inovacije titleDirekcija za razvoj malih i srednjih preduzeća - Evropski centar za informacije i inovacije Crne Gore classsf-depth-2>DDSME/a>/li>li idmenu-2890-1 classmiddle even sf-item-2 sf-depth-2 sf-no-children>a href/kontakt/masinski-fakultet-univerziteta-crne-gore titleMašinski fakultet Univerziteta Crne Gore classsf-depth-2>MF/a>/li>li idmenu-2891-1 classmiddle odd sf-item-3 sf-depth-2 sf-no-children>a href/kontakt/privredna-komora-crne-gore titlePrivredna komora Crne Gore classsf-depth-2>PK/a>/li>li idmenu-2892-1 classlast even sf-item-4 sf-depth-2 sf-no-children>a href/kontakt/business-start-centar-bar titleBusiness Start-up Centar Bar classsf-depth-2>BSC/a>/li>/ul>/li>/ul> /div>/div> /div>!-- /header_top --> /div> div classheader-left-pattern>/div> div classheader-right-pattern>/div> div classheader-bottom-container> div classwrapper> div idlogo classlogo> a href/ relhome> img srchttps://www.euroinfo.me/sites/euroinfo.me/files/logo-v2.png altEuroinfo Logo /> /a> /div>!--/logo--> div idheader_bottom classregion region-header-bottom clearfix> div idblock-apachesolr-panels-search-form classblock block-apachesolr-panels header-search-form float-right> div classcontent> form action/ methodpost idapachesolr-panels-search-block accept-charsetUTF-8>div>div classform-item form-type-textfield form-item-apachesolr-panels-search-form> label classelement-invisible foredit-apachesolr-panels-search-form>Pretraga /label> input titleEnter the terms you wish to search for. typetext idedit-apachesolr-panels-search-form nameapachesolr_panels_search_form value size15 maxlength128 classform-text />/div>input typehidden nameform_build_id valueform-ZP7jSmu6Ucxqm4E_Xn0aO5AlUx1WOamwbmyeBfUjLFM />input typehidden nameform_id valueapachesolr_panels_search_block />div classform-actions form-wrapper idedit-actions>input typesubmit idedit-submit nameop valuePretraga classform-submit />/div>/div>/form> /div>/div>div idblock-locale-language classblock block-locale language-switch float-right clear-right> div classcontent> ul classlanguage-switcher-locale-url>li classen first>a href/en classlanguage-link xml:langen>Eng/a>/li>li classsh last active>a href/ classlanguage-link active xml:langsh>Mne/a>/li>/ul> /div>/div>div idblock-menu-menu-header-top-menu classblock block-menu header-top-menu float-right> div classcontent> ul classmenu>li classfirst last leaf>a href/site-map classsitemap-icon>Mapa sajta/a>/li>/ul> /div>/div>div idblock-block-6 classblock block-block social-links float-right> div classcontent> a href# classfacebook-icon target_blank>Facebook/a>a href# classtwitter-icon target_blank>Twitter/a> /div>/div> /div>!-- /header_bottom --> /div> /div> /div>!-- /header --> div classcontent-wrapper> div idcontent classregion region-content clearfix> div idblock-system-main classblock block-system main-content> div classcontent> div classpanel-stacked idfront-page-panel> div classpanel-stacked-middle clearfix> div classpanel-pane pane-views-panes pane-front-page-featured-articles-panel-pane-1 sp-15-top sp-10-bottom float-left > div classpane-content> div classview view-front-page-featured-articles view-id-front_page_featured_articles view-display-id-panel_pane_1 featured-slideshow view-dom-id-f826020cffa775206157b79e2555483d> div classview-header> script typetext/javascript>/script> /div> div classview-content> div classskin-default> div idviews_slideshow_cycle_main_front_page_featured_articles-panel_pane_1_1 classviews_slideshow_cycle_main views_slideshow_main>div idviews_slideshow_cycle_teaser_section_front_page_featured_articles-panel_pane_1_1 classviews-slideshow-cycle-main-frame views_slideshow_cycle_teaser_section> div idviews_slideshow_cycle_div_front_page_featured_articles-panel_pane_1_1_0 classviews-slideshow-cycle-main-frame-row views_slideshow_cycle_slide views_slideshow_slide views-row-1 views-row-first views-row-odd aria-labelledbyviews_slideshow_pager_field_item_bottom_front_page_featured_articles-panel_pane_1_1_0> div classviews-slideshow-cycle-main-frame-row-item views-row views-row-0 views-row-odd views-row-first> div classimage> a href/vijesti/odrzana-tradicionalna-konferencija-connecto-2024-u-mostaru>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/428x320/public/multimedia/pages/foto/2013/09/connecto_2024_-_loksan_harley_1.jpg width428 height320 alt />/a> /div> div classright-side> div classpretitle>iz EEN - Crne Gore - 26.06.2024./div> h3>a href/vijesti/odrzana-tradicionalna-konferencija-connecto-2024-u-mostaru>Održana tradicionalna konferencija CONNECTO 2024. u Mostaru/a>/h3>/div> /div>/div>div idviews_slideshow_cycle_div_front_page_featured_articles-panel_pane_1_1_1 classviews-slideshow-cycle-main-frame-row views_slideshow_cycle_slide views_slideshow_slide views-row-2 views_slideshow_cycle_hidden views-row-even aria-labelledbyviews_slideshow_pager_field_item_bottom_front_page_featured_articles-panel_pane_1_1_1> div classviews-slideshow-cycle-main-frame-row-item views-row views-row-0 views-row-odd> div classimage> a href/vijesti/monteenegro-na-sajmu-evropskih-projekata>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/428x320/public/multimedia/pages/foto/2013/09/1_3.jpg width428 height320 alt />/a> /div> div classright-side> div classpretitle>iz EEN - Crne Gore - 10.06.2024./div> h3>a href/vijesti/monteenegro-na-sajmu-evropskih-projekata>MontEENegro na Sajmu evropskih projekata!/a>/h3>/div> /div>/div>div idviews_slideshow_cycle_div_front_page_featured_articles-panel_pane_1_1_2 classviews-slideshow-cycle-main-frame-row views_slideshow_cycle_slide views_slideshow_slide views-row-3 views_slideshow_cycle_hidden views-row-last views-row-odd aria-labelledbyviews_slideshow_pager_field_item_bottom_front_page_featured_articles-panel_pane_1_1_2> div classviews-slideshow-cycle-main-frame-row-item views-row views-row-0 views-row-odd> div classimage> a href/vijesti/monteenegro-na-dogadaju-povodom-zvanicnog-pocetka-rada-haba-evropskog-instituta-za-inovacije>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/428x320/public/multimedia/pages/foto/2013/09/img-142c00caae05de4d2eb8397649ec7d4a-v.jpg width428 height320 alt />/a> /div> div classright-side> div classpretitle>iz EEN - Crne Gore - 27.05.2024./div> h3>a href/vijesti/monteenegro-na-dogadaju-povodom-zvanicnog-pocetka-rada-haba-evropskog-instituta-za-inovacije>MontEENegro na događaju povodom zvaničnog početka rada haba Evropskog instituta za inovacije i tehnologiju - EIT hub Crna Gora/a>/h3>/div> /div>/div>/div>/div> div classviews-slideshow-controls-bottom clearfix> div idwidget_pager_bottom_front_page_featured_articles-panel_pane_1_1 classviews-slideshow-pager-fields widget_pager widget_pager_bottom views_slideshow_pager_field> div idviews_slideshow_pager_field_item_bottom_front_page_featured_articles-panel_pane_1_1_0 classviews-slideshow-pager-field-item views_slideshow_pager_field_item views-row-odd views-row-first aria-controlsviews_slideshow_cycle_div_front_page_featured_articles-panel_pane_1_1_0> div classviews-field-counter> div classviews-content-counter> a href#slideshow-0>1/a> /div>/div>div classviews-field-nothing> div classviews-content-nothing> a href#slideshow-0>div classpietimer-container>/div>/a> /div>/div>/div>div idviews_slideshow_pager_field_item_bottom_front_page_featured_articles-panel_pane_1_1_1 classviews-slideshow-pager-field-item views_slideshow_pager_field_item views-row-even aria-controlsviews_slideshow_cycle_div_front_page_featured_articles-panel_pane_1_1_1> div classviews-field-counter> div classviews-content-counter> a href#slideshow-1>2/a> /div>/div>div classviews-field-nothing> div classviews-content-nothing> a href#slideshow-1>div classpietimer-container>/div>/a> /div>/div>/div>div idviews_slideshow_pager_field_item_bottom_front_page_featured_articles-panel_pane_1_1_2 classviews-slideshow-pager-field-item views_slideshow_pager_field_item views-row-odd views-row-last aria-controlsviews_slideshow_cycle_div_front_page_featured_articles-panel_pane_1_1_2> div classviews-field-counter> div classviews-content-counter> a href#slideshow-2>3/a> /div>/div>div classviews-field-nothing> div classviews-content-nothing> a href#slideshow-2>div classpietimer-container>/div>/a> /div>/div>/div>/div> /div> /div> /div> /div> /div> /div>div classpanel-separator>/div>div classpanel-pane pane-views-panes pane-najave-aside-panel-pane-1 sp-15-top sp-10-bottom float-right > div classpane-content> div classview view-najave-aside view-id-najave_aside view-display-id-panel_pane_1 events-aside view-dom-id-60dc59600f23e9e02d1e4f220f9ed887> div classview-header> h2 classview-title>najave/h2> /div> div classview-content> ul> li classfirst odd> a href/najave/opste/connect2slovenia-international-matchmaking-event-2024-tokom-medunarodnog-sajma> div classdate-wrapper> div classdate> div classday>19/div>div classmonth>Sep/div> /div> /div> h3>„Connect2Slovenia - International Matchmaking Event 2024“ tokom Međunarodnog sajma preduzetništva (MOS) u Celju /h3>/a> /li> li classeven> a href/najave/opste/monteenegro-vas-poziva-na-b2b-susrete-u-okviru-konferencije-connecto-2024> div classdate-wrapper> div classdate> div classday>17/div>div classmonth>Jun/div> /div> /div> h3>MontEENegro vas poziva na B2B susrete u okviru konferencije CONNECTO 2024!/h3>/a> /li> li classlast odd> a href/najave/opste/monteenegro-vas-poziva-na-b2b-susrete-u-okviru-konferencije-connecto-2024> div classdate-wrapper> div classdate> div classday>17/div>div classmonth>Jun/div> /div> /div> h3>MontEENegro vas poziva na B2B susrete u okviru konferencije CONNECTO 2024!/h3>/a> /li> /ul> /div> div classview-footer> a href/najave classmore-link>Pogledaj sve/a> /div> /div> /div> /div>div classpanel-separator>/div>div classpanel-pane pane-custom pane-1 float-left sp-10-bottom > div classpane-content> a href/node/add/bcd-forma classreport-company-banner> h2>prijavi br /> preduzeće !/h2> div classicon>/div>/a> /div> /div>div classpanel-separator>/div>div classpanel-pane pane-custom pane-2 float-left sp-10-bottom sp-10-left sp-10-right > div classpane-content> script typetext/javascript> jQuery(document).ready(function($) { $(#findPartnerBanner).colorbox({ iframe: true, width: 900, height: 90% }); });/script>a hrefhttp://een.ec.europa.eu/tools/services/SearchCenter/Search/ProfileSimpleSearch?orgaIdME00231 classfind-partner-banner idfindPartnerBanner> h2>pronađi br /> partnera !/h2> div classicon>/div>/a> /div> /div>div classpanel-separator>/div>div classpanel-pane pane-views-panes pane-javni-pozivi-aside-panel-pane-1 float-left sp-10-bottom > div classpane-content> div classview view-javni-pozivi-aside view-id-javni_pozivi_aside view-display-id-panel_pane_1 public-calls-aside view-dom-id-d56fd1e177ea8c2f7f9d78a9a94f0b9c> div classview-header> h2 classview-title>javni pozivi/h2> /div> div classview-content> ul> li classfirst odd> a href/javni-pozivi/raspisan-konkurs-za-podrsku-startup-ovima-na-teritoriji-podgorice> div classicon>/div> h3>RASPISAN KONKURS ZA PODRŠKU STARTUP-OVIMA NA TERITORIJI PODGORICE/h3>/a> /li> li classeven> a href/javni-pozivi/otvoreno-pet-programa-fonda-za-inovacije> div classicon>/div> h3>Otvoreno pet programa Fonda za inovacije/h3>/a> /li> li classlast odd> a href/javni-pozivi/javni-poziv-za-ucesce-u-postupku-dodjele-sredstava-za-program-za-unapredenje> div classicon>/div> h3>Javni poziv za učešće u postupku dodjele sredstava za Program za unapređenje konkurentnosti privrede za 2023. godinu/h3>/a> /li> /ul> /div> div classview-footer> a href/javni-pozivi classmore-link>Pogledaj sve/a> /div> /div> /div> /div>div classpanel-separator>/div>div classpanel-pane pane-block pane-quicktabs-multimedija float-left pane-quicktabs right-sidebar-block > div classpane-content> div idquicktabs-multimedija classquicktabs-wrapper multimedia-aside quicktabs-style-nostyle>div classitem-list>ul classquicktabs-tabs quicktabs-style-nostyle>li classactive first>a href/home?qt-multimedija0#qt-multimedija idquicktabs-tab-multimedija-0 rel classactive>foto/a>/li>li>a href/home?qt-multimedija1#qt-multimedija idquicktabs-tab-multimedija-1 rel classactive>video/a>/li>li classlast>a href/home?qt-multimedija2#qt-multimedija idquicktabs-tab-multimedija-2 rel classactive>publikacije/a>/li>/ul>/div>div idquicktabs-container-multimedija classquicktabs_main quicktabs-style-nostyle >div idquicktabs-tabpage-multimedija-0 classquicktabs-tabpage >div classview view-multimedia-tabs view-id-multimedia_tabs view-display-id-panel_pane_3 albums-small-slideshow view-dom-id-4f491be960a41ae6d1f8f2a72906817d> div classview-content> div classskin-default> div idviews_slideshow_cycle_main_multimedia_tabs-panel_pane_3_1 classviews_slideshow_cycle_main views_slideshow_main>div idviews_slideshow_cycle_teaser_section_multimedia_tabs-panel_pane_3_1 classviews-slideshow-cycle-main-frame views_slideshow_cycle_teaser_section> div idviews_slideshow_cycle_div_multimedia_tabs-panel_pane_3_1_0 classviews-slideshow-cycle-main-frame-row views_slideshow_cycle_slide views_slideshow_slide views-row-1 views-row-first views-row-odd > div classviews-slideshow-cycle-main-frame-row-item views-row views-row-0 views-row-odd views-row-first> a hrefhttps://www.euroinfo.me/multimedia/fotografije/sajam-i-b2b-biznis-baze-2013 titleSajam i B2B - Biznis Baze 2013 >a href/multimedia/fotografije/sajam-i-b2b-biznis-baze-2013>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/133x97/public/multimedia/gallery/defaultimage/2013/09/bb_0.jpg width133 height97 alt />/a>/a> /div>div classviews-slideshow-cycle-main-frame-row-item views-row views-row-1 views-row-even views-row-first> a hrefhttps://www.euroinfo.me/multimedia/fotografije/een-regionalna-konferencija-beograd-2013 titleEEN Regionalna konferencija Beograd 2013>a href/multimedia/fotografije/een-regionalna-konferencija-beograd-2013>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/133x97/public/multimedia/gallery/defaultimage/2013/09/980x_header.jpg width133 height97 alt />/a>/a> /div>div classviews-slideshow-cycle-main-frame-row-item views-row views-row-2 views-row-odd views-row-first> a hrefhttps://www.euroinfo.me/multimedia/fotografije/een-godisnja-konferencija-2013 titleEEN Godišnja Konferencija 2013>a href/multimedia/fotografije/een-godisnja-konferencija-2013>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/133x97/public/multimedia/gallery/defaultimage/2013/09/vilnius1.jpg width133 height97 alt />/a>/a> /div>div classviews-slideshow-cycle-main-frame-row-item views-row views-row-3 views-row-even views-row-first> a hrefhttps://www.euroinfo.me/multimedia/fotografije/saradnja-sa-fondacijom-petrovic-njegos titleSaradnja sa fondacijom "Petrović - Njegoš">a href/multimedia/fotografije/saradnja-sa-fondacijom-petrovic-njegos>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/133x97/public/multimedia/gallery/defaultimage/2013/09/fondacija-logo_0_0.jpg width133 height97 alt />/a>/a> /div>/div>/div>/div> div classviews-slideshow-controls-bottom clearfix> div idviews_slideshow_controls_text_multimedia_tabs-panel_pane_3_1 classviews-slideshow-controls-text views_slideshow_controls_text> span idviews_slideshow_controls_text_previous_multimedia_tabs-panel_pane_3_1 classviews-slideshow-controls-text-previous views_slideshow_controls_text_previous> a href# relprev>Previous/a>/span> span idviews_slideshow_controls_text_pause_multimedia_tabs-panel_pane_3_1 classviews-slideshow-controls-text-pause views_slideshow_controls_text_pause views-slideshow-controls-text-status-play>a href#>Pause/a>/span> span idviews_slideshow_controls_text_next_multimedia_tabs-panel_pane_3_1 classviews-slideshow-controls-text-next views_slideshow_controls_text_next> a href# relnext>Next/a>/span>/div> /div> /div> /div> div classview-footer> a href/multimedia/fotografije classmore-link>Pogledaj sve fotografije/a> /div> /div>/div>div idquicktabs-tabpage-multimedija-1 classquicktabs-tabpage quicktabs-hide>div classview view-multimedia-tabs view-id-multimedia_tabs view-display-id-panel_pane_1 albums-small-slideshow view-dom-id-7ffc0bd1b0c839e52106105baeaf95b7> div classview-content> div classskin-default> div idviews_slideshow_cycle_main_multimedia_tabs-panel_pane_1_1 classviews_slideshow_cycle_main views_slideshow_main>div idviews_slideshow_cycle_teaser_section_multimedia_tabs-panel_pane_1_1 classviews-slideshow-cycle-main-frame views_slideshow_cycle_teaser_section> div idviews_slideshow_cycle_div_multimedia_tabs-panel_pane_1_1_0 classviews-slideshow-cycle-main-frame-row views_slideshow_cycle_slide views_slideshow_slide views-row-1 views-row-first views-row-odd > div classviews-slideshow-cycle-main-frame-row-item views-row views-row-0 views-row-odd views-row-first> a hrefhttps://www.euroinfo.me/multimedia/video/easme titleEASME>a href/multimedia/video/easme>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/133x97/public/multimedia/gallery/defaultimage/2013/09/easme.jpg width133 height97 alt />/a>/a> /div>div classviews-slideshow-cycle-main-frame-row-item views-row views-row-1 views-row-even views-row-first> a hrefhttps://www.euroinfo.me/multimedia/video/what-brokerage-event titleWhat is a Brokerage Event?>a href/multimedia/video/what-brokerage-event>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/133x97/public/multimedia/gallery/defaultimage/2013/09/be.jpg width133 height97 alt />/a>/a> /div>div classviews-slideshow-cycle-main-frame-row-item views-row views-row-2 views-row-odd views-row-first> a hrefhttps://www.euroinfo.me/multimedia/video/horizon-2020-kratki-video titleHorizon 2020 - kratki video>a href/multimedia/video/horizon-2020-kratki-video>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/133x97/public/multimedia/gallery/defaultimage/2013/09/horizon2020_0.jpg width133 height97 alt />/a>/a> /div>div classviews-slideshow-cycle-main-frame-row-item views-row views-row-3 views-row-even views-row-first> a hrefhttps://www.euroinfo.me/multimedia/video/een-godisnja-konferencija-2013 titleEEN Godišnja Konferencija 2013>a href/multimedia/video/een-godisnja-konferencija-2013>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/133x97/public/multimedia/gallery/defaultimage/2013/09/vilnius1_0.jpg width133 height97 alt />/a>/a> /div>/div>div idviews_slideshow_cycle_div_multimedia_tabs-panel_pane_1_1_1 classviews-slideshow-cycle-main-frame-row views_slideshow_cycle_slide views_slideshow_slide views-row-2 views_slideshow_cycle_hidden views-row-last views-row-even > div classviews-slideshow-cycle-main-frame-row-item views-row views-row-0 views-row-odd> a hrefhttps://www.euroinfo.me/multimedia/video/enterprise-europe-network-secret-small-business-success titleEnterprise Europe Network - The secret of small business success>a href/multimedia/video/enterprise-europe-network-secret-small-business-success>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/133x97/public/multimedia/gallery/defaultimage/2013/09/tajna_een.jpg width133 height97 alt />/a>/a> /div>div classviews-slideshow-cycle-main-frame-row-item views-row views-row-1 views-row-even> a hrefhttps://www.euroinfo.me/multimedia/video/enterprise-europe-network-pocetak titleEnterprise Europe Network: Početak>a href/multimedia/video/enterprise-europe-network-pocetak>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/133x97/public/multimedia/gallery/defaultimage/2013/09/een_pocetak.jpg width133 height97 alt />/a>/a> /div>div classviews-slideshow-cycle-main-frame-row-item views-row views-row-2 views-row-odd> a hrefhttps://www.euroinfo.me/multimedia/video/enterprise-europe-network-nase-usluge titleEnterprise Europe Network - Naše usluge>a href/multimedia/video/enterprise-europe-network-nase-usluge>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/133x97/public/multimedia/gallery/defaultimage/2013/09/een_usluge.jpg width133 height97 alt />/a>/a> /div>/div>/div>/div> div classviews-slideshow-controls-bottom clearfix> div idviews_slideshow_controls_text_multimedia_tabs-panel_pane_1_1 classviews-slideshow-controls-text views_slideshow_controls_text> span idviews_slideshow_controls_text_previous_multimedia_tabs-panel_pane_1_1 classviews-slideshow-controls-text-previous views_slideshow_controls_text_previous> a href# relprev>Previous/a>/span> span idviews_slideshow_controls_text_pause_multimedia_tabs-panel_pane_1_1 classviews-slideshow-controls-text-pause views_slideshow_controls_text_pause views-slideshow-controls-text-status-play>a href#>Pause/a>/span> span idviews_slideshow_controls_text_next_multimedia_tabs-panel_pane_1_1 classviews-slideshow-controls-text-next views_slideshow_controls_text_next> a href# relnext>Next/a>/span>/div> /div> /div> /div> div classview-footer> a href/multimedija/video classmore-link>Pogledaj sve/a> /div> /div>/div>div idquicktabs-tabpage-multimedija-2 classquicktabs-tabpage quicktabs-hide>div classview view-multimedia-tabs view-id-multimedia_tabs view-display-id-panel_pane_2 publications-small-slideshow view-dom-id-8864ccad132e17c8cfb59885fe12e3da> div classview-content> div classskin-default> div idviews_slideshow_cycle_main_multimedia_tabs-panel_pane_2_1 classviews_slideshow_cycle_main views_slideshow_main>div idviews_slideshow_cycle_teaser_section_multimedia_tabs-panel_pane_2_1 classviews-slideshow-cycle-main-frame views_slideshow_cycle_teaser_section> div idviews_slideshow_cycle_div_multimedia_tabs-panel_pane_2_1_0 classviews-slideshow-cycle-main-frame-row views_slideshow_cycle_slide views_slideshow_slide views-row-1 views-row-first views-row-odd > div classviews-slideshow-cycle-main-frame-row-item views-row views-row-0 views-row-odd views-row-first> a href/sites/euroinfo.me/files/multimedia/gallery/files/2013/09/a4smes_manual_toolbox_for_smes.pdf titleHow to use the Toolbox set for SMEs for close-to-market activities in H2020 target_blank>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/150x207/public/multimedia/gallery/defaultimage/2013/09/pages_from_a4smes_manual_toolbox_for_smes.jpg width150 height207 alt />/a> /div>/div>div idviews_slideshow_cycle_div_multimedia_tabs-panel_pane_2_1_1 classviews-slideshow-cycle-main-frame-row views_slideshow_cycle_slide views_slideshow_slide views-row-2 views_slideshow_cycle_hidden views-row-even > div classviews-slideshow-cycle-main-frame-row-item views-row views-row-0 views-row-odd> a href/sites/euroinfo.me/files/multimedia/gallery/files/2013/09/10tips.pdf title10 korisnih savjeta za Vaš biznis u 2018. godini target_blank>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/150x207/public/multimedia/gallery/defaultimage/2013/09/25488444_1477734009012662_8962871438268387522_o.png width150 height207 alt />/a> /div>/div>div idviews_slideshow_cycle_div_multimedia_tabs-panel_pane_2_1_2 classviews-slideshow-cycle-main-frame-row views_slideshow_cycle_slide views_slideshow_slide views-row-3 views_slideshow_cycle_hidden views-row-last views-row-odd > div classviews-slideshow-cycle-main-frame-row-item views-row views-row-0 views-row-odd> img typeoffoaf:Image src/sites/euroinfo.me/files/styles/150x207/public/multimedia/gallery/defaultimage/2013/09/pages_from_smes_in_h2020.jpg width150 height207 alt /> /div>/div>/div>/div> div classviews-slideshow-controls-bottom clearfix> div idviews_slideshow_controls_text_multimedia_tabs-panel_pane_2_1 classviews-slideshow-controls-text views_slideshow_controls_text> span idviews_slideshow_controls_text_previous_multimedia_tabs-panel_pane_2_1 classviews-slideshow-controls-text-previous views_slideshow_controls_text_previous> a href# relprev>Previous/a>/span> span idviews_slideshow_controls_text_pause_multimedia_tabs-panel_pane_2_1 classviews-slideshow-controls-text-pause views_slideshow_controls_text_pause views-slideshow-controls-text-status-play>a href#>Pause/a>/span> span idviews_slideshow_controls_text_next_multimedia_tabs-panel_pane_2_1 classviews-slideshow-controls-text-next views_slideshow_controls_text_next> a href# relnext>Next/a>/span>/div> /div> /div> /div> div classview-footer> a href/multimedia/publikacije classmore-link>Pogledaj sve publikacije/a> /div> /div>/div>/div>/div> /div> /div>div classpanel-separator>/div>div classpanel-pane pane-block pane-block-11 pane-block > div classpane-content> div classpanel-pane pane-block pane-mailchimp-lists-euroinfo-cg-newsletter newsletter-subscribe float-left sp-10-left sp-10-right pane-mailchimp-lists> h2 classpane-title> newsletter /h2> div classpane-content> form classmailchimp-lists-user-subscribe-form action/web/20180809035137/http://euroinfo.me/ methodpost idmailchimp-lists-user-subscribe-form-euroinfo-cg-newsletter accept-charsetUTF-8 novalidatenovalidate>div>div idmailchimp-newsletter-euroinfo_cg_newsletter classmailchimp-newsletter-wrapper>div idedit-mailchimp-lists-mailchimp-euroinfo-cg-newsletter-title classform-item form-type-item> /div>div classform-item form-type-textfield form-item-mailchimp-lists-mailchimp-euroinfo-cg-newsletter-mergevars-EMAIL> label foredit-mailchimp-lists-mailchimp-euroinfo-cg-newsletter-mergevars-email>Email Address span classform-required titleThis field is required.>*/span>/label> input typetext idedit-mailchimp-lists-mailchimp-euroinfo-cg-newsletter-mergevars-email namemailchimp_listsmailchimp_euroinfo_cg_newslettermergevarsEMAIL value size25 maxlength128 classform-text required valid placeholderEmail Address *>/div>div classform-item form-type-textfield form-item-mailchimp-lists-mailchimp-euroinfo-cg-newsletter-mergevars-FNAME> label foredit-mailchimp-lists-mailchimp-euroinfo-cg-newsletter-mergevars-fname>First Name /label> input typetext idedit-mailchimp-lists-mailchimp-euroinfo-cg-newsletter-mergevars-fname namemailchimp_listsmailchimp_euroinfo_cg_newslettermergevarsFNAME value size25 maxlength128 classform-text valid placeholderFirst Name >/div>/div>input typesubmit idedit-submit nameop valueSubmit classform-submit>input typehidden nameform_build_id valueform-wsFqZxRUJx0UHlrqIu1Tt5qZs-qj9IABW2Fs5BtSxx0>input typehidden nameform_id valuemailchimp_lists_user_subscribe_form_euroinfo_cg_newsletter>/div>/form> /div> /div> /div> /div>div classpanel-separator>/div>div classpanel-pane pane-views-panes pane-linkovi-aside-panel-pane-1 sp-10-bottom float-right > div classpane-content> div classview view-linkovi-aside view-id-linkovi_aside view-display-id-panel_pane_1 links-aside view-dom-id-e4e59658e0904e0968aa55248b014661> div classview-header> h2 classview-title>linkovi/h2> /div> div classview-content> ul> li classfirst odd> a hrefhttp://danube-inco.net/ target_blank> div classcount> 1 /div> h3>Danube INCO.NET (News, Events, Calls)/h3>/a> /li> li classeven> a hrefhttp://ted.europa.eu/TED/misc/chooseLanguage.do target_blank> div classcount> 2 /div> h3>TED (Tenders Electronic Daily)/h3>/a> /li> li classodd> a hrefhttps://webgate.ec.europa.eu/smeip/ target_blank> div classcount> 3 /div> h3> SME Internationalisation Portal/h3>/a> /li> li classlast even> a hrefhttp://een.ec.europa.eu/ target_blank> div classcount> 4 /div> h3>Enterprise Europe Network/h3>/a> /li> /ul> /div> /div> /div> /div> /div>!--/content-middle--> /div>!--/panel-right-sidebar--> /div>/div> /div>!-- /content --> /div> div classpush>/div>!-- Sticky footer push -->/div> !-- /main-container -->div idfooter classfooter> div classfooter-top> div classwrapper> div idfooter_top classregion region-footer-top clearfix> div idblock-block-10 classblock block-block> div classcontent> !-- TTTT --> /div>/div>div idblock-views-baneri-footer-block classblock block-views> div classcontent> div classview view-baneri-footer view-id-baneri_footer view-display-id-block banners-footer view-dom-id-e6cc45156595d759efddcad19bd24332> div classview-content> ul> li classfirst odd> div classimage> a hrefhttp://ec.europa.eu/index_en.htm titleEuropean Commission targetblank> div classoriginal>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/193x111_canvas/public/logotipi-recovered_03_09.png width193 height111 alt />/div> div classoverlay>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/193x111_canvas/public/multimedia/baneri/pictures/2012/03/logotipi-recovered_09.png width193 height111 alt />/div>/a> /div> /li> li classeven> div classimage> a hrefhttp://www.nasme.me/ titleDirekcija za razvoj malih i srednjih preduzeća targetblank> div classoriginal>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/193x111_canvas/public/untitled-2.png width193 height111 alt />/div> div classoverlay>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/193x111_canvas/public/multimedia/baneri/pictures/2012/03/untitled-1.png width193 height111 alt />/div>/a> /div> /li> li classodd> div classimage> a hrefhttp://www.ucg.ac.me/ titleUniverzitet Crne Gore targetblank> div classoriginal>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/193x111_canvas/public/logotipi-recovered_03_03.png width193 height111 alt />/div> div classoverlay>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/193x111_canvas/public/multimedia/baneri/pictures/2012/03/logotipi-recovered_03.png width193 height111 alt />/div>/a> /div> /li> li classeven> div classimage> a hrefhttp://www.privrednakomora.me/ titlePrivredna komora Crne Gore targetblank> div classoriginal>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/193x111_canvas/public/logotipi-recovered_03_15.png width193 height111 alt />/div> div classoverlay>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/193x111_canvas/public/multimedia/baneri/pictures/2012/03/logotipi-recovered_15.png width193 height111 alt />/div>/a> /div> /li> li classlast odd> div classimage> a hrefhttp://www.bscbar.org/ titleBSC Bar targetblank> div classoriginal>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/193x111_canvas/public/logotipi-recovered_03_12.png width193 height111 alt />/div> div classoverlay>img typeoffoaf:Image src/sites/euroinfo.me/files/styles/193x111_canvas/public/multimedia/baneri/pictures/2012/03/logotipi-recovered_12.png width193 height111 alt />/div>/a> /div> /li> /ul> /div> /div> /div>/div> /div>!-- /footer_top --> /div> /div> div classfooter-bottom> div classwrapper> div idfooter_bottom classregion region-footer-bottom clearfix> div idblock-block-2 classblock block-block> div classcontent> div classcopyrights> div classrights>© www.euroinfo.me / All Rights Reserved /div> div classauthor> Created by: a classsprite bild titleVisit our Website hrefhttp://www.bild-studio.com/ target_blank>bild studio/a> /div>/div> /div>/div> /div>!-- /footer_bottom --> /div> /div>/div>!-- /footer --> script typetext/javascript srchttps://www.euroinfo.me/sites/euroinfo.me/files/js/js_gcgsv9036mkr2ymZgmKh_Uzh4KwHOaEjY9Qgbjo98rM.js>/script> !-- Google Analytics: change UA-XXXXX-X to be your sites ID. script typetext/javascript> var _gaq_setAccount,UA-XXXXX-X,_trackPageview; (function(d,t){var gd.createElement(t),sd.getElementsByTagName(t)0; g.src(https:location.protocol?//ssl://www)+.google-analytics.com/ga.js; s.parentNode.insertBefore(g,s)}(document,script)); /script> -->/body>/html>
View on OTX
|
View on ThreatMiner
Please enable JavaScript to view the
comments powered by Disqus.
Data with thanks to
AlienVault OTX
,
VirusTotal
,
Malwr
and
others
. [
Sitemap
]