function popUp(URL) 
{
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=400,height=400,left = 462,top = 334');");
}
function StreamUp(loc,size) 
{    
	up = window.open(loc,'Box','width=400,height=420');
  
}


function popUpFMC(URL, widthParam, heightParam) 
{
	day = new Date();
	id = day.getTime();
	defaultHeight = 400;
	defaultWidth = 400;

	if (heightParam == '')
	{
		heightParam = defaultHeight;
	}

	if (widthParam == '')
	{
		widthParam = defaultWidth;
	}

	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=1,scrollbars=1,location=1,statusbar=1,menubar=1,resizable=1,width=" + widthParam + ",height=" + heightParam + ",left=100,top=100');");
}
