function breakOutOfFrame(){
	if(top.location != location){
		top.location.href = document.location.href;
	}
}

function sendMessage(profileID) {
	window.open("/sendMessage.aspx?messageTo=" + profileID,"winSendMessage","scrollbars=yes,resizable=yes,width=440,height=400");
}

function reSendMessage(profileID, messageID) {
	window.open("/sendMessage.aspx?messageTo=" + profileID + "&resend=" + messageID,"winSendMessage","scrollbars=yes,resizable=yes,width=440,height=400");
}

function noThanks(profileID) {
	window.open("/sendMessage.aspx?messageTo=" + profileID + "&template=nothanks","winSendMessage","scrollbars=yes,resizable=yes,width=440,height=400");
}

function removeFavourite(profileID) {
	document.location.href = "favsPeopleILike.aspx?removeFavourite=" + profileID;
}

function addFavourite(profileID) {
	window.open("/addFavourite.aspx?profileID=" + profileID,"winAddFavourite","resizable=yes,width=440,height=200");
}

function removeFromPeopleWhoLikeMe(profileID) {
	document.location.href = "favsPeopleWhoLikeMe.aspx?hideFavourite=" + profileID;
}
