function doTracking(pagename){	
	alert(pagename);
	/*var s=s_gi(s_account); 
	s.pageName = pagename ; 
	s.events="";
	void(s.t());*/
}

var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Handle all the FSCommand messages in a Flash movie.
/*function virtual_dentist_DoFSCommand(command, args) {
	var virtual_dentistObj = isInternetExplorer ? document.all.virtual_dentist : document.virtual_dentist;
	eval(command+"('"+args+"');");
}*/
function virtual_dentist_DoFSCommand(command, args) {
	var virtual_dentistObj = isInternetExplorer ? document.all.virtual_dentist : document.virtual_dentist;
	var arg_Array = args.split(", ");
	if (arg_Array[1]== undefined || arg_Array[1]== "undefined" || arg_Array[1]== null){
		eval(command+"('"+arg_Array[0]+"');");
	}else{
		eval(command+"('"+arg_Array[0]+"','"+arg_Array[1]+"');");
	}
}
// Hook for Internet Explorer.
if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
	document.write('<script language=\"VBScript\"\>\n');
	document.write('On Error Resume Next\n');
	document.write('Sub virtual_dentist_FSCommand(ByVal command, ByVal args)\n');
	document.write('	Call virtual_dentist_DoFSCommand(command, args)\n');
	document.write('End Sub\n');
	document.write('</script\>\n');
}

function setCookie(name, value, expires, path, domain, secure) 
{
	var today = new Date();
	today.setTime(today.getTime());
	if (expires)
	{
	  expires = expires * 1000 * 60 * 60 * 24;
	}
	var expires_date = new Date(today.getTime()+(expires));
	document.cookie = name + "=" + escape(value) + 
//((expires)? ";expires=" + expires_date.toGMTString() : "") + 
	((path) ? ";path=" + path : "" ) + 
	((domain) ? ";domain=" + domain : "" ) +
	((secure) ? ";secure" : "" );
}

function getCookie(name) {
  var dc = document.cookie;
  var prefix = name + "=";
  var begin = dc.indexOf("; " + prefix);
  if (begin == -1) {
    begin = dc.indexOf(prefix);
    if (begin != 0) return null;
  } else
    begin += 2;
  var end = document.cookie.indexOf(";", begin);
  if (end == -1)
    end = dc.length;
  return unescape(dc.substring(begin + prefix.length, end));  
}

function getName(){
	//alert("getName");
	var virtual_dentistObj = isInternetExplorer ? document.all.virtual_dentist : document.virtual_dentist;
	var _nameCookie = getCookie('nameCookie');	
	if (_nameCookie==undefined||_nameCookie==null||_nameCookie==""){
		_nameCookie = "";
		setName('');
	}	
	//alert("getName "+_nameCookie);
	if (virtual_dentistObj != null ){
		if (isInternetExplorer == false){
			virtual_dentistObj = document.virtual_dentist;
		}
		virtual_dentistObj.SetVariable("nameCookie", _nameCookie);
	}
}

function setName(uName){
	//alert("setName "+uName);
	setCookie('nameCookie', uName, -1, '/', '', '');
}

function getEmail(){
	//alert("getEmail");
	var virtual_dentistObj = isInternetExplorer ? document.all.virtual_dentist : document.virtual_dentist;
	var _emailCookie = getCookie('emailCookie');	
	if (_emailCookie==undefined||_emailCookie==null||_emailCookie==""){
		_emailCookie = "";
		setEmail('');
	}	
	//alert("getEmail "+_emailCookie);
	if (virtual_dentistObj != null ){
		if (isInternetExplorer == false){
			virtual_dentistObj = document.virtual_dentist;
		}
		virtual_dentistObj.SetVariable("emailCookie", _emailCookie);
	}
}

function setEmail(uEmail){
	//alert("setEmail "+uEmail);
	setCookie('emailCookie', uEmail, -1, '/', '', '');
}

function popupWithTracking(pageUrl, linkName) {
  window.open(pageUrl, 'newwin');
  sendCustomLinkEvent(linkName);
}

// Added for Omniture tracking (20090325)

function sendCustomEvent(pageName, eventName) {
  //alert("sendCustomEvent:= "+pageName+", "+eventName);
  ns=s_account; 
  if (pageName == '') {
    pageName='eventDummy';  
  }
  s_pageName='/VirtualDentist/TR/TU/HomePage/' + pageName + '.cvsp';  
  s_events=eventName;
  void(s_gs(ns));
  s_events='';
}

function sendPageEvent(pageName) {
  // alert("sendPageEvent:= "+pageName);
  ns=s_account; 
  s_pageName='/VirtualDentist/TR/TU/HomePage/' + pageName + '.cvsp';
  void(s_gs(ns));
}

function sendCustomLinkEvent(linkName) {
  // alert("sendPageEvent:= "+linkName);
  sendLinkEvent('', linkName);
}

function getQueryParam(name) {
  name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
  var regexS = "[\\?&]"+name+"=([^&#]*)";
  var regex = new RegExp( regexS );
  var results = regex.exec( window.location.href );
  if( results == null ) {
    return "";
  } else {
    return results[1];
  }
}

function getTrackingCode() {
  var cid = getQueryParam('cid');
  if (cid == '' || cid == null) {
    cid = getCookie('cid');
  }
  return cid;
}

function setTrackingCode() {
  var cid = getTrackingCode();
  if (cid != '' && cid != null) {
    setCookie('cid', cid, '', '/', '', '');
  }
}

function popupWithTrackingCode(pageUrl) {
  setTrackingCode();
  var cid = getTrackingCode();
  if (cid != '' && cid != null) {
    pageUrl = pageUrl + '?cid=' + cid;
  }
  window.open(pageUrl);
}

// Ended for Omniture tracking (20090325)

/**for SEO*************************************************************************/
// Flash Player Version Detection - Rev 1.5
// Detect Client Browser type
// Copyright(c) 2005-2006 Adobe Macromedia Software, LLC. All rights reserved.
var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
var returnedVersion="";

function ControlVersion()
{
	var version;
	var axo;
	var e;

	// NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry

	try {
		// version will be set for 7.X or greater players
		axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
		version = axo.GetVariable("$version");
	} catch (e) {
	}

	if (!version)
	{
		try {
			// version will be set for 6.X players only
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
			
			// installed player is some revision of 6.0
			// GetVariable("$version") crashes for versions 6.0.22 through 6.0.29,
			// so we have to be careful. 
			
			// default to the first public version
			version = "WIN 6,0,21,0";

			// throws if AllowScripAccess does not exist (introduced in 6.0r47)		
			axo.AllowScriptAccess = "always";

			// safe to call for 6.0r47 or greater
			version = axo.GetVariable("$version");

		} catch (e) {
		}
	}

	if (!version)
	{
		try {
			// version will be set for 4.X or 5.X player
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
			version = axo.GetVariable("$version");
		} catch (e) {
		}
	}

	if (!version)
	{
		try {
			// version will be set for 3.X player
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
			version = "WIN 3,0,18,0";
		} catch (e) {
		}
	}

	if (!version)
	{
		try {
			// version will be set for 2.X player
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
			version = "WIN 2,0,0,11";
		} catch (e) {
			version = -1;
		}
	}
	
	return version;
}

// JavaScript helper required to detect Flash Player PlugIn version information
function GetSwfVer(){
	// NS/Opera version >= 3 check for Flash plugin in plugin array
	var flashVer = -1;
	
	if (navigator.plugins != null && navigator.plugins.length > 0) {
		if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
			var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
			var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;			
			var descArray = flashDescription.split(" ");
			var tempArrayMajor = descArray[2].split(".");
			var versionMajor = tempArrayMajor[0];
			var versionMinor = tempArrayMajor[1];
			if ( descArray[3] != "" ) {
				tempArrayMinor = descArray[3].split("r");
			} else {
				tempArrayMinor = descArray[4].split("r");
			}
			var versionRevision = tempArrayMinor[1] > 0 ? tempArrayMinor[1] : 0;
			var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
		}
	}
	// MSN/WebTV 2.6 supports Flash 4
	else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
	// WebTV 2.5 supports Flash 3
	else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
	// older WebTV supports Flash 2
	else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
	else if ( isIE && isWin && !isOpera ) {
		flashVer = ControlVersion();
	}	
	return flashVer;
}

// When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
{
	versionStr = GetSwfVer();
	if (versionStr == -1 ) {
		return false;
	} else if (versionStr != 0) {
		if(isIE && isWin && !isOpera) {
			// Given "WIN 2,0,0,11"
			tempArray         = versionStr.split(" "); 	// ["WIN", "2,0,0,11"]
			tempString        = tempArray[1];			// "2,0,0,11"
			versionArray      = tempString.split(",");	// ['2', '0', '0', '11']
		} else {
			versionArray      = versionStr.split(".");
		}
		var versionMajor      = versionArray[0];
		var versionMinor      = versionArray[1];
		var versionRevision   = versionArray[2];

		// Set returned version
		returnedVersion=versionMajor;
		
       	// is the major.revision >= requested major.revision AND the minor version >= requested minor
		if (versionMajor > parseFloat(reqMajorVer)) {
			return true;
		} else if (versionMajor == parseFloat(reqMajorVer)) {
			if (versionMinor > parseFloat(reqMinorVer))
				return true;
			else if (versionMinor == parseFloat(reqMinorVer)) {
				if (versionRevision >= parseFloat(reqRevision))
					return true;
			}
		}
		
		return false;
	}
}
function getStyleObject(objectId) {
	  if(document.getElementById && document.getElementById(objectId)) {
		  return document.getElementById(objectId).style;
	  } else if (document.all && document.all(objectId)) {
		  return document.all(objectId).style;
	  } else if (document.layers && document.layers[objectId]) {
		  return getObjNN4(document,objectId);
	  } else {
		  return false;
	  }
 }
/**end for SEO*************************************************************************/