function OpenPopUp(url)
{
	window.open(url,'PopUp','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,Width=650,height=430,screenX=100,screenY=50,top=10,left=100');
}

function OpenWizardPopUp(url)
{
	window.open(url,'WizardPopUp','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,Width=650,height=430,screenX=100,screenY=50,top=10,left=100');
}

function OpenToolPopUp(url)
{
	window.open(url,'ToolPopUp','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,Width=650,height=430,screenX=100,screenY=50,top=10,left=100');
}

function OpenToolPopUpXY(url)
{
	window.open(url,'ToolPopUp','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,Width=650,height=430,screenX=100,screenY=50,top=10,left=100');
}

function lockOpenPopUp(url, obj)
{
	OpenPopUp(url);
	//obj.href='JavaScript:nothing();';
}

function nothing()
{
	//PopUp.focus();
	//window.child[0].focus();
}

function OpenPopUpXY(url,x,y)
{
	window.open(url,'XYPopUp','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,Width=' + x + ',height=' + y + ',screenX=50,screenY=50,top=10,left=50');
}

function closeWindow()
{
	window.close();
}

function closeWindowTools(url)
{
	window.opener.location.href = '/' + url;
	//window.opener.refresh();
	//window.opener.goalList.refresh();
	window.close();
}

function refresh()
{
	window.location.reload(true);
}

function refreshParent()
{
	window.opener.location.href='/main.aspx';
	//window.opener.refresh();
}

function openQuote()
{
	//window.open('selfDailyQuote.aspx','Quote','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,Width=300,height=200,screenX=100,screenY=50,top=10,left=100');
	openPopUp('selfDailyQuote.aspx');
}

function openAdvisory()
{
	window.open('popupAdvisors.aspx','Advisors','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,Width=700,height=385,screenX=100,screenY=50,top=10,left=100');
}
