function size( box, page ){                                      	var obj = document.getElementById(box);	if (page == "contact")		obj.height = 313;	if (page == "mancuso")		obj.height = 720;	if (page == "moreno")		obj.height = 720;	if (page == "integration")		obj.height = 375;	if (page == "projectMgmt")		obj.height = 425;	if (page == "staffAug")		obj.height = 360;	if (page == "strategyDev")		obj.height = 650;			if (page == "Hyperion")		obj.height = 650;			if (page == "archDesign")		obj.height = 420;		if (page == "MDM")		obj.height = 420;}function FP_openNewWindow(w, h, nav, loc, sts, menu, scroll, resize, name, url){//v1.0	var windowProperties='';	if (nav==false)		windowProperties+='toolbar=no,';	else		windowProperties+='toolbar=yes,';	if (loc==false)		windowProperties+='location=no,'; 	else		windowProperties+='location=yes,';	if (sts==false)		windowProperties+='status=no,';	else		windowProperties+='status=yes,';	if (menu==false)		windowProperties+='menubar=no,';	else		windowProperties+='menubar=yes,';	if (scroll==false)		windowProperties+='scrollbars=no,';	else		windowProperties+='scrollbars=yes,';	if (resize==false)		windowProperties+='resizable=no,';	else		windowProperties+='resizable=yes,';	if (w!="")		windowProperties+='width='+w+',';	if (h!="")		windowProperties+='height='+h;	if (windowProperties!="")		{ if ( windowProperties.charAt(windowProperties.length-1)==',')			windowProperties=windowProperties.substring(0,windowProperties.length-1); }  window.open(url,name,windowProperties);}