/**
 * openLink
 *
 */
function openLink (linkName) {
	if (linkName == 'mypeople'){
		window.open ("http://www.mypeople.com/", "MyPeople","menubar=yes,location=yes,resizable=yes,scrollbars=yes,status=yes");
	}
	else if (linkName == 'help'){
		window.open("http://www.mypeople.com/sing/help.html", "MyPeople_Help","width=500,height=560,menubar=no,location=no,resizable=no,scrollbars=no,status=no");
	}
}