﻿var DSIQ = new Object();

//Expand Learn more
DSIQ.ShowHide = function(source,idShow, idHide)
{
    if(idShow)
    {
        var showEl = source.document.getElementById(idShow);
        if(showEl)
        {
            showEl.style.display = "";
        }
    }
    if(idHide)
    {
        var hideEl = source.document.getElementById(idHide);
        if(hideEl)
        {
            hideEl.style.display = "none";
        }
    }
}

DSIQ.OpenDialog = function(source,url,windowName,width,height)
{
	var screenx = (screen.width - width) / 2;
	var screeny = (screen.height - height) / 2;
	
	popupWin = window.open(url,windowName,
		"scrollbars=yes,menubar=no,toolbar=no,status=no,top=" + screeny + ",left=" + screenx +
		",screenx=" + screenx +	",screeny=" + screeny + ",width=" + width +
		",height=" + height + ",resizable=yes");
		
	popupWin.focus();
}