// note popup wird nur beim ersten aufrufen der homepage 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(rootpath +'/com/note.jsp','disclaimer','width=485,height=370,scrollbars=no,top=300,left=230');
			}
			if(location.pathname.search(/\/com_es\//)>-1) {
				popUp(rootpath +'/com_es/note.jsp','disclaimer','width=485,height=370,scrollbars=no,top=300,left=230');
			}
			if(location.pathname.search(/\/xau\//)>-1){
				popUp(rootpath +'/au/note.jsp','disclaimer','width=485,height=370,scrollbars=no,top=300,left=230');
			}
			if(location.pathname.search(/\/es\//)>-1){
				popUp(rootpath +'/es/note.jsp','disclaimer','width=485,height=370,scrollbars=no,top=300,left=230');
			}
			if(location.pathname.search(/kr/)>-1) {
				popUp(rootpath +'/kr/notep.jsp','disclaimer','width=485,height=480,scrollbars=no,top=300,left=230');
		       }
		}
	} else {
   		var newcookie = "popup=true; path=\/;";
   		document.cookie = newcookie;
		if(location.pathname.search(/com/)>-1) {
			popUp(rootpath +'/com/note.jsp','disclaimer','width=485,height=370,scrollbars=mo,top=300,left=230');
		}
		if(location.pathname.search(/es/)>-1) {
			popUp(rootpath +'/es/note.jsp','disclaimer','width=485,height=370,scrollbars=mo,top=300,left=230');
		}
		if(location.pathname.search(/com_es/)>-1) {
			popUp(rootpath +'/com_es/note.jsp','disclaimer','width=485,height=370,scrollbars=mo,top=300,left=230');
		}
		if(location.pathname.search(/kr/)>-1) {
			popUp(rootpath +'/kr/promotionp.jsp','disclaimer','width=485,height=480,scrollbars=no,top=300,left=230');
		}

	}

}

PopUpCheck();

