/**
 * @author jmstiles
 */

var flashVersionJS = GetSwfVer();
var descArray = flashVersionJS.split(" ");
if(descArray.length == 2)
{
	var tempArrayMajor = descArray[1].split(",");			
	var versionMajor = tempArrayMajor[0];
}
else
{
	var tempArrayMajor = descArray[0].split(".");			
	var versionMajor = tempArrayMajor[0];
}

if(location.hostname != "www.pongoresume.com" && location.hostname != "pongoresume.synthenet.com")
{
	siteURL = "www.pongoresume.com";
}
else
{
	siteURL = location.hostname;
}

//document.write('<script src="' + location.protocol + '//' + siteURL + '/diagnostics/qry_diagnostics_test.cfm"></scr' + 'ipt>');

//Include CFM file to perform database updates
document.write('<script src="' + location.protocol + '//' + siteURL + '/diagnostics/qry_diagnostics_update.cfm?fpVersion=' + versionMajor + '&screenWidth=' + screen.width + '&screenHeight=' + screen.height + '"></scr' + 'ipt>');

//var diagnostics = "fpVersion=" + versionMajor + ":screenWidth=" + screen.width + ":screenHeight=" + screen.height;
//writeCookie('diagnostics', diagnostics, 1);		