function openProfile(iUID)
{
// opens a new browser window and displays someone's profile
// parameters:
// - unique window name
// - person profile uid
	
	var iLeft = 150;
	var iWidth = 500;
	var iHeight = 500;
	var iLocate = 0;
	var iResize = 0;
	var iScrolls = 1;
	var iTop = 150;
	var sLocation;
	var sName;
	
	sLocation = '/overview/structure/profile.asp?id=' + iUID
	sName = 'Profile'
	
	window.open(sLocation,sName,
	'left=' + iLeft +
	',width=' + iWidth +
	',height=' + iHeight +
	',location=' + iLocate +
	',resizable=' + iResize +
	',scrollbars=' + iScrolls +
	',top=' + iTop);
}