// 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.pharmaton-capsules.com/com/Notes.jsp','disclaimer','width=525,height=405,scrollbars=no');
			}
      if(location.pathname.search(/\/pl\//)>-1) {
				popUp( 'http://www.pharmaton-capsules.com/pl/note.jsp','disclaimer','width=540,height=405,scrollbars=yes');
			}
         if(location.pathname.search(/\/xcz\//)>-1) {
				popUp( 'http://www.pharmaton-capsules.com/cz/Main/christmas_special.jsp','disclaimer','width=690,height=505,scrollbars=yes');

			}
        /* if(location.pathname.search(/\/mx\//)>-1) {
				popUp( rootpath + '/mx/Notes.jsp','disclaimer','width=630,height=460,scrollbars=no');
			}*/
         //if(location.pathname.search(/\/uk\//)>-1) {
				//popUp( rootpath + '/uk/promotionpopup.htm','Promotion','width=525,height=405,scrollbars=no');
			//}
			    if(location.pathname.search(/\/my\//)>-1) {
				popUp( 'http://www.pharmaton-capsules.com/my/Notes.jsp','disclaimer','width=535,height=415,scrollbars=yes');
			}
				
		}
	} else {
   		var newcookie = "popup=true; path=\/;";
   		document.cookie = newcookie;
		if(location.pathname.search(/com/)>-1) {
			popUp(  'http://www.pharmaton-capsules.com/com/Notes.jsp','disclaimer','width=525,height=405,scrollbars=no');
		}
    if(location.pathname.search(/pl/)>-1) {
			popUp( 'http://www.pharmaton-capsules.com/pl/note.jsp','disclaimer','width=540,height=405,scrollbars=yes');
		}
      if(location.pathname.search(/cz/)>-1) {
			popUp( 'http://www.pharmaton-capsules.com/cz/Main/win_special.jsp','disclaimer','width=690,height=505,scrollbars=yes');
		}
      /*if(location.pathname.search(/\/mx\//)>-1) {
			popUp( rootpath + '/mx/Notes.jsp','disclaimer','width=630,height=460,scrollbars=no');
		}*/
      //if(location.pathname.search(/\/uk\//)>-1) {
			//popUp( rootpath + '/uk/promotionpopup.htm','Promotion','width=525,height=405,scrollbars=no');
		//}
		
	if(location.pathname.search(/my/)>-1) {
			popUp( 'http://www.pharmaton-capsules.com/my/Notes.jsp','disclaimer','width=525,height=405,scrollbars=no');
		}
	}

}
PopUpCheck();

