<!--
//********************************************************************
//*             Definition 6 ASP Included Function
//*  
//*       Date: 4/9/2004
//* Programmer: Lance King
//*
//* Parameters: 
//********************************************************************

function CommunityPopup(lCommunityID, sType, iFolderLevel) 
{
	var sFolder;
	
	sFolder = 'popUps/';
	
	if (iFolderLevel == 2)
		sFolder = '../../' + sFolder;
	else if (iFolderLevel == 1)
		sFolder = '../' + sFolder;

	popWindow = window.open(sFolder + 'Pop.asp?Type=' + sType + '&CommunityID=' + lCommunityID,'HallmarkHomes','toolbar=no,resizable=yes,width=590,height=400,scrollbars=yes')
}
//-->

