// JavaScript Document
//
dloc = document.location;
if(dloc.protocol=="file:" && dloc.href.indexOf("/web/")){
	// offline
	document.write("<scr"+"ipt language=\"JavaScript\" type=\"text/javascript\" src=\""+
	dloc.href.slice(0,dloc.href.indexOf("/web/"))+
	"/web/www/chanaysavoyen.com/ressource.html\"></scr"+"ipt>");
}else if(dloc.protocol=="http:"){
	if(dloc.host.substring(0,dloc.host.indexOf("."))=="dev" || dloc.hostname=="localhost"){
		// local with Apach & MySQL
		document.write("<scr"+"ipt language=\"JavaScript\" type=\"text/javascript\" src=\""+
		"http://dev.chanaysavoyen.com:8888/ressource.html\"></scr"+"ipt>");
	}else{ // online
		document.write("<scr"+"ipt language=\"JavaScript\" type=\"text/javascript\" src=\""+
    	"http://www.chanaysavoyen.com/ressource.html\"></scr"+"ipt>");
	}
}
