function OpenViewer(sURL, sWidth, sHeight)
{
var iTop;
var iLeft;

	// Calculate center of the screen.
	iTop = (window.screen.availHeight / 2) - Number(Number(sHeight) / 2.0);
	iLeft = (window.screen.availWidth / 2) - Number(Number(sWidth) / 2.0);
	
	// Concatenate attributes with width, height and window position.
	sAttributes = "menubar=no, resizable=no, location=no, height=" + sHeight + ",width=" + sWidth + ",top=" + String(iTop) + ",left=" + String(iLeft);
	// Open new window.
	window.open(sURL, "_blank", sAttributes);
}

function SMobileOpenRedeLojas(sURL)
{
	OpenViewer(sURL, 624, 450, "status=no,toolbar=no,menubar=no,location=no,resizable=no,");
}

function SMobileOpenOrganigrama(sURL)
{
	OpenViewer(sURL, 500, 300, "status=no,toolbar=no,menubar=no,location=no,resizable=no,");
}
