function IWLaunch(Path,Size,inputStr,otherStr,otherStr2)
{
	var w;
	var attribs;
	var argCount = IWLaunch.arguments.length;
	
	// i need to change this to an optional parameter list in the form of [optional,] etc.
	if (argCount > 2)
	{ 
		if (inputStr.length > 0)
		{
			Path = Path + '?in=' + inputStr;
		}
	}

	if (argCount > 3)
	{ 
		if (otherStr.length > 0)
		{
			Path = Path + '&o=' + otherStr;
		}
	}

	if (argCount > 4)
	{ 
		if (otherStr2.length > 0)
		{
			Path = Path + '&o2=' + otherStr2;
		}
	}

	if (Size == 'S')
	{
		attribs = "toolbar=no,scrollbars=yes,resizable,location=no,height=300,width=480";
	}
	else if (Size == 'M')
	{
		attribs = "toolbar=no,scrollbars=yes,resizable,location=no,height=400,width=640";
	}
	else if (Size == 'L')
	{
		attribs = "toolbar=no,scrollbars=yes,resizable,location=no,height=500,width=760";
	}
	else if (Size == 'L2')
	{
		attribs = "toolbar=no,scrollbars=yes,resizable,location=no,height=600,width=800";
	}
	else if (Size == 'XL')
	{
		attribs = "toolbar=no,scrollbars=yes,resizable,location=no,height=600,width=1024";
	}	
	else
	{
		attribs = "toolbar=no,scrollbars=yes,resizable,location=no,height=400,width=640";
	}

	w=window.open(Path,"InfoWindow",attribs);
}

function IWLaunchSized(Path,width,height)
{
    var attribs = "toolbar=no,scrollbars=yes,resizable,location=no,height=" + height + ",width=" + width;
    w=window.open(Path,"InfoWindow",attribs);
}
