<!--

/* Open save BLOG page, which will save the BLOG */
function saveblog(id, username){
	sUrl = "/private/startBookmarkBlog.do?id=" + id +"&username=" + username;
	popUp(sUrl,250,520);
}	

/* Open save DISCUSSION page, which will save the DISCUSSION */
function savediscussion(id){
	sUrl = "/private/startBookmarkThread.do?id=" + id;
	popUp(sUrl,250,520);
}

/* Open save DISCUSSION page, which will save the DISCUSSION */
function joingroup(group,groupitem){
	sUrl = "/private/joinGroup.do?group=" + group  +"&groupitem=" + groupitem;
	//alert(sUrl);
	popUp(sUrl,250,520);
}
function joincollege(collegeid){
	sUrl = "/private/joincollege.do?collegeid=" + collegeid;
	//alert(sUrl);
	popUp(sUrl,250,520);
}

/* Open window to send email to member */
function email(profileid, username){
	sUrl = "/private/editNewMessage.do?id=" + profileid + "&name=" + username;
	popUp(sUrl,320,620,false);
}

/* Open popup window and load flirt page.  */
function flirt(profileid, username){
	sUrl = "/private/editFlirt.do?id=" + profileid + "&name=" + username;
	popUp(sUrl,250,530);
}
		
//-->		