 function check_passwords() {
return true;    //DocCheck-Schutz an
//return false;   //DocCheck-Schutz aus
}

function check_skip() {

	var skipURLs = new Array(3); 
	skipURLs[1] = 'http://www.sandoz.de/site/de_ap/service/service_arznei_gesundheit/index.shtml';
	skipURLs[2] = 'http://www.sandoz.de/site/de_ap/pressecenter/Pressemitteilungen/index.shtml';
	skipURLs[3] = '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;
		}
	}
	
	return false;

}

function popup()
{ 
NF=window.open("datei.htm","neu","width=300,height=450");
NF.focus; } 
