function openNewWindow(URLtoOpen, winName, vars) 
{
	var winHandle=window.open(URLtoOpen, winName, vars);
    
    return winHandle;
}

function openPresentation(URLToOpen)
{
    window.open(URLToOpen,'winElectricPresentation','scrollbars=yes, width=300, height=200');
}

function openFileDownload(URLToOpen)
{
    window.open(URLToOpen,'winElectricFileDownload','width=300,height=200');
}

function openHelp(URLToOpen)
{
    window.open(URLToOpen,'winElectricHelp','scrollbars=yes, height=280, width=570');
}
    
function drawCloseButton(win, tag)
{
	if (win.name.indexOf("winElectric") == 0)
	{	
		strCloseBtn = "<A href=\"#\" onclick=\"window.close();\">Close</A>";
		tag.innerHTML = strCloseBtn;	
	}
}