﻿function LaunchApp(targetUrl, windowName, windowWidth, windowHeight, windowOptions) 
{
	try 
	{
		if(!targetUrl)
		{
			return;
		}
		if(!windowName)
		{
			windowName = '';
		}
		if(!windowWidth)
		{
			windowWidth = 1010;
		}
		if(!windowHeight)
		{
			windowHeight = 690;
		}
		if(!windowOptions) 
		{
			windowOptions = '';
		}
		
		if (windowOptions.length <= 0) 
		{
			windowOptions = 'left=0,top=0,toolbar=no,menubar=no,status=yes,location=no,scrollbars=yes,resizable=yes,width=' + windowWidth + ',height=' + windowHeight;
		}
		
		newWindow = window.open(targetUrl,windowName,windowOptions);		
		if(newWindow)
		{
			newWindow.focus();
		}
		else
		{
			window.location.href = "/d.aspx?s=/e-services/havingproblems.htm";
		}		
	} 
	catch (myError) 
	{
		window.location.href = "/d.aspx?s=/e-services/havingproblems.htm";
	}
}


