//-----------------------------------------------------------------------------
// 	G3W - Sistema de Franquias
// 	http://g3w.com.br
// 	2008-Aug
//	Charset UTF-8
//-----------------------------------------------------------------------------
// Create XMLHttp
//-----------------------------------------------------------------------------
//	return obj
//-----------------------------------------------------------------------------
function getXMLHttpRequest() 
{
	var xmlHttp = '';
	
	// Real browsers
	if(window.XMLHttpRequest)
		xmlHttp = new XMLHttpRequest();
	
	// IE
	if(window.ActiveXObject)
		xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
		
	return xmlHttp;
}

//-----------------------------------------------------------------------------
// 	Do nothing
//-----------------------------------------------------------------------------
function doNothing() {}

//-----------------------------------------------------------------------------
//	Set Row Focus
//-----------------------------------------------------------------------------
function setRowFocus(div, bSet)
{
	var divClass = "row"

	// set focus
	if(bSet)
		divClass = "rowFocus"
		
	// update class
	div.setAttribute("class", divClass);
	div.setAttribute("className", divClass);
}

//-----------------------------------------------------------------------------
//	Get Selected
//-----------------------------------------------------------------------------
function getSelected(elemSel)
{
	index = elemSel.selectedIndex
	return elemSel[index].value
}

//-----------------------------------------------------------------------------
// Open Franquia link
//-----------------------------------------------------------------------------
//	string	path	: website path, example, http://g3w.com.br
//	return 	void
//-----------------------------------------------------------------------------
function openFranquia (path) {
	window.open (path + "/website/franqueado/index.html", "g3wfranquia", "scrollbars=no, menubar=no, height=496, width=720, resizable=no, toolbar=no, location=no, status=no");
}

function openCircular (path) {
	window.open (path + "/website/circular/index.html", "g3wcircular", "scrollbars=yes, menubar=no, height=430, width=560, resizable=no, toolbar=no, location=no, status=no");
}
