/**
 * @author DBCorp
 * @version 1.0
 * @package celebs.nl
 */

//START BOOKMARK AND HOMEPAGE SCRIPT
var ua=navigator.userAgent.toLowerCase();
var ischrome=(ua.indexOf('chrome')!=-1);
var isKonq=(ua.indexOf('konqueror')!=-1);
var isSafari=(ua.indexOf('webkit')!=-1);
var isMac=(ua.indexOf('mac')!=-1);
var buttonStr=isMac?'Command/Cmd':'CTRL';
	
	// START BOOKMARK SCRIPT
	function Bookmark() {
		title = "Celebs.nl"; 
		url = "http://www.celebs.nl/";
	
		if (window.sidebar){ // Mozilla Firefox Bookmark
			window.sidebar.addPanel(title, url,"");
		}else if( window.external ){ 
			if(ischrome){ //Chrome
				alert('U dient op CTRL + D te drukken om onze site aan uw favorieten toe te voegen.');
			}else{ // IE Favorite
				window.external.AddFavorite( url, title);
			}
		}else{
			if(isKonq){ //Chrome
				alert('U dient op CTRL + B te drukken om onze site aan uw favorieten toe te voegen.');
			}else if(window.home || isSafari){ // Firefox, Netscape, Safari, iCab
				alert('U dient op '+buttonStr+' + D te drukken om onze site aan uw favorieten toe te voegen.');
			}else if(!window.print || isMac){ // IE5/Mac and Safari 1.0
				alert('U dient op Command/Cmd + D te drukken om onze site aan uw favorieten toe te voegen.');    
			}else{
				alert('U dient Celebs.nl handmatig toe te voegen aan uw favorieten');
			}
		}
	}
	// END BOOKMARK SCRIPT
	// START HOMEPAGE SCRIPT
	function Homepage(){	
		if (window.sidebar){ // Mozilla Firefox Bookmark
			alert('Sleep het icoontje links naast het webadres naar het "Home" icoontje in de werkbalk, om Celebs.nl in te stellen als jouw startpagina.');
		}else if(window.external){ // IE Favorite
			if(ischrome){ //Chrome
				alert('Om Celebs.nl als uw startpagina in te stellen, dient u dit handmatig in te stellen in uw browser opties.');
			}else{
				theobj = document.anchors[0];
				theobj.style.behavior='url(#default#homepage)';
				theobj.setHomePage('http://www.celebs.nl');
			}
		}else{
			alert('Om Celebs.nl als uw startpagina in te stellen, dient u dit handmatig in te stellen in uw browser opties.');
		}
	}
	// END HOMEPAGE SCRIPT
//END BOOKMARK AND HOMEPAGE SCRIPT

function selectLanguage(country){
	if (country=="be"){
		document.getElementById("callerinfo").innerHTML = "Bel vanuit Nederland <b>0907 - 07 000</b> <span style='padding-left: 5px;'>&euro; 1.25 p/m</span>";
	}else {
		document.getElementById("callerinfo").innerHTML = "Bel vanuit Nederland <b>0909 - 0400 324</b> <span style='padding-left: 5px;'>&euro; 0.80 p/m</span>";
	}
	document.access.code.focus();
}