function check_passwords() {
return true;    //DocCheck-Schutz an
// return false;   //DocCheck-Schutz aus
}

function check_skip(url) {

	//Nothing to skip for sandoz.be
	/*
	var skipURLs = new Array(3); 
	
	skipURLs[0] = 'http://www.sandoz.de/site/de_ap/service/service_arznei_gesundheit/index.shtml';
	skipURLs[1] = 'http://www.sandoz.de/site/de_ap/pressecenter/Pressemitteilungen/index.shtml';
	skipURLs[2] = 'http://www.sandoz.de/site/de_ar/pressecenter/Pressemitteilungen/index.shtml';

	var eigeneURL = document.location.href;

	for (var i=0;i<skipURLs.length;i++) {
		if (skipURLs[i] == eigeneURL) {
			return true;
		}
	}
	*/
	
	var url_match = url.match(/site.nl.pro|site.nl.biopharmaceuticals.discover_products|site.fr.pro|site.fr.biopharmaceuticals.discover_products/);
	
	//Page doesn't belong to pro-area -> no action
	if(!url_match){
		return true;
	}
	//Page belongs to pro-area -> action needed (redirect)
	else{
		return false;
	}

}

function popup()
{ 
NF=window.open("datei.htm","neu","width=300,height=450");
NF.focus; } 