function liveChat() 
{
	var e = window.open('http://help.acculeads.com/SightMaxAgentInterface/PreChatSurvey.aspx?accountID=1&siteID=1&queueID=2','chatWindow','width=420,height=306,resizable=0,scrollbars=no,menubar=no,status=no');
}

function eg() 
{
	var e = window.open('epolicy.html','epolicy','width=420,height=307,resizable=0,scrollbars=no,menubar=no,status=no');
}

function printContentArea() 
{
	printWindow = window.open('about:blank','printWindowName','width=600,height=400,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,copyhistory=no, resizable=yes');

	var htmlOut = "";
	htmlOut += "<html>";
	htmlOut += "<title>Print Window</title>";
	htmlOut += "	<link rel='stylesheet' href='css/ie_ns_ff.css' type='text/css' />";
	htmlOut += "	<body><form name='mainForm'>";
	//htmlOut += "	<a href='#' onclick='alert();top.window.print();alert();'>Print</a><br>";
	htmlOut += 		document.getElementById('contentDiv').innerHTML;
	htmlOut += "	</form></body>";
	htmlOut += " 	<script>window.print();</script>";
	htmlOut += "</html>";

	printWindow.print();
	top.printWindow.document.writeln(htmlOut);
}

/*
*	Used for displaying blue/red icons within the cow.
*/
var bDevLocal = false;//global dev/local var.
if (document.domain.indexOf('dev.acculeads.com') == 0 || document.domain.indexOf('localhost') == 0)
{
	bDevLocal = true;
}

function writeOverviewIconRed(float)
{
	if (float == 'right')
	{
		document.write('<img src="images/information_red.png" style="float:right;" />');
	}
	else if (float == 'left')
	{
		document.write('<img src="images/information_red.png" style="float:left;" />');
	}
	else
	{
		document.write('<img src="images/information_red.png" />');
	}
}

