var pageTracker = _gat._getTracker("UA-5750785-1");
pageTracker._trackPageview();

//check if username and password were typed in
function login_form_validate(form_name, username_error, password_error)
{
	if (form_name.txtusername.value == '') {
		alert(username_error);
		return false;
	}
	if (form_name.txtpassword.value == '') {
		alert(password_error);
		return false;
	}
}

//submit any form
function form_submit(form_name)
{
	document.forms[form_name].submit();
}

function confirmDelete(type,profileid,conmsg)
{
	if (confirm(conmsg)){
		//alert(profileid);
	    //document.frmDelProfile.txtdelete_id.value=profileid;
	    //document.frmDelProfile.submit();
	    ajax_delete_element(type,profileid);
	}
}

//Double click function
text = new Array(); //This array will hold variables to tell the script the state that it should switch to
function switchState(type,id)
{
        content = ''; //Nullify the content variable
        if( text[id] != 1 ) //Check if text['id'] is set to 1 (explained later)
        {
                content = document.getElementById(type + id).innerHTML; //Define content as the inner content of the div
                new_html = '<input style="height:13px;" type="text" id="' + type + id + '" value="' + content + '" />'; //Define the new HTML (textbox)
                document.getElementById(type + 'parent_' + id).innerHTML = new_html; //Set the parent div's HTML to the new HTML
                text[id] = 1; //We set this variable for the script to remember that we already set it to a text box
        }
        else
        {
                //So with this case we will be doing the opposite and switching back to a div
                content = document.getElementById(type + id).value; //Define content as the value of the textbox
                new_html = '<div id="' + type + id + '">' + content + '</div>'; //Define the new HTML (div)
                document.getElementById(type + 'parent_' + id).innerHTML = new_html; //Set the parent div's HTML to the new HTML
                ajax_rename_company(id,content);
                text[id] = 0; //We set this variable for the script to remember that we have set it back to a div
        }
}





//COOL DETECT BROWSER FUNCTION
var BrowserDetect = {
	init: function () {
		this.browser = this.searchString(this.dataBrowser) || "An unknown browser";
		this.version = this.searchVersion(navigator.userAgent)
			|| this.searchVersion(navigator.appVersion)
			|| "an unknown version";
		this.OS = this.searchString(this.dataOS) || "an unknown OS";
	},
	searchString: function (data) {
		for (var i=0;i<data.length;i++)	{
			var dataString = data[i].string;
			var dataProp = data[i].prop;
			this.versionSearchString = data[i].versionSearch || data[i].identity;
			if (dataString) {
				if (dataString.indexOf(data[i].subString) != -1)
					return data[i].identity;
			}
			else if (dataProp)
				return data[i].identity;
		}
	},
	searchVersion: function (dataString) {
		var index = dataString.indexOf(this.versionSearchString);
		if (index == -1) return;
		return parseFloat(dataString.substring(index+this.versionSearchString.length+1));
	},
	dataBrowser: [
		{ 	string: navigator.userAgent,
			subString: "OmniWeb",
			versionSearch: "OmniWeb/",
			identity: "OmniWeb"
		},
		{
			string: navigator.vendor,
			subString: "Apple",
			identity: "Safari"
		},
		{
			prop: window.opera,
			identity: "Opera"
		},
		{
			string: navigator.vendor,
			subString: "iCab",
			identity: "iCab"
		},
		{
			string: navigator.vendor,
			subString: "KDE",
			identity: "Konqueror"
		},
		{
			string: navigator.userAgent,
			subString: "Firefox",
			identity: "Firefox"
		},
		{
			string: navigator.vendor,
			subString: "Camino",
			identity: "Camino"
		},
		{		// for newer Netscapes (6+)
			string: navigator.userAgent,
			subString: "Netscape",
			identity: "Netscape"
		},
		{
			string: navigator.userAgent,
			subString: "MSIE",
			identity: "Explorer",
			versionSearch: "MSIE"
		},
		{
			string: navigator.userAgent,
			subString: "Gecko",
			identity: "Mozilla",
			versionSearch: "rv"
		},
		{ 		// for older Netscapes (4-)
			string: navigator.userAgent,
			subString: "Mozilla",
			identity: "Netscape",
			versionSearch: "Mozilla"
		}
	],
	dataOS : [
		{
			string: navigator.platform,
			subString: "Win",
			identity: "Windows"
		},
		{
			string: navigator.platform,
			subString: "Mac",
			identity: "Mac"
		},
		{
			string: navigator.platform,
			subString: "Linux",
			identity: "Linux"
		}
	]

};
BrowserDetect.init();
//COOL DETECT BROWSER FUNCTION END


function delete_page(page_ID) {
	if(confirm('Are you sure you want to Delete page #'+page_ID+'?')) {
		ajax_delete_element('page', page_ID);
	}
}