	/*	define your project path here */

	var protocol =  (("https:" == document.location.protocol) ? "https://" : "http://");

	if(window.location.hostname == "192.168.0.42")		
		var serverLocation = protocol + window.location.hostname+"/trackfield";
	else
		var serverLocation = protocol + "72.29.76.194/~trackand";

	var SITEROOT = serverLocation;
	var SITECSS = serverLocation + "/templates/default/css";
	var SITEJS = serverLocation + "/js";
	var SITEIMG = serverLocation + "/templates/default/images/";

	/*
	# do not change or update this function
	*/
	function loadjscssfile(filename,filetype){
		if (filetype == "js"){ //if filename is a external JavaScript file
			document.write("<script src='" + SITEJS + "/" + filename + "' type='text/javascript'></script>");
		}
		else if (filetype == "css"){ //if filename is an external CSS file
			document.write("<link href='" + SITECSS + "/" + filename + "' type='text/css' rel='stylesheet'>");
		}
	}
