// note popup wird nur beim ersten aufrufen der contentsite geoeffnet
function extString( cString, del_1, del_2 ) {
	var sub_1 = cString.split( del_1 );
	if ( sub_1 == cString )
		return -1;
	var substr2 = sub_1[1].split( del_2 );
	var len1 = sub_1[0].length + del_1.length;
	var len2 = substr2[0].length;
	return cString.substring( len1, len1+len2 );
}

function PopUpCheck() {
	if (document.cookie) {
		newcookie = document.cookie;
		cv = extString( newcookie, 'popup=', ';' );
		if (cv == "-1") {
   			var newcookie = "popup=true; path=\/;";
     			document.cookie = newcookie;
			if(location.pathname.search(/\/com\//)>-1)
        {
				popUp('http://www.antistax.com/com/note.jsp','disclaimer','width=512,height=425,scrollbars=auto,top=125,left=120');
			}
		}
	} else {
   		var newcookie = "popup=true; path=\/;";
   		document.cookie = newcookie;
		if(location.pathname.search(/com/)>-1) {
			popUp('http://www.antistax.com/com/note.jsp','disclaimer','width=512,height=425,scrollbars=auto,top=125,left=120');
		}
	}

}
PopUpCheck();

