function selectImage(ddl)
{
	var ddl_index = ddl.selectedIndex;
	var album_uid = ddl.options[ddl_index].value;

	if(album_uid == -1)
	return "";

	ddl.selectedIndex = 0;
	window.open("../tools/select_images.php?album=" + album_uid,'', "resizable=no, status=yes, scrollbars=yes, height=600, width=800, menubar=no, location=no, toolbar=no, directories=no");
}

function saveProfile()
{
	if(document.form_profile.about_me.value.length > 1000)
	{
		alert("關於我的字數必須在1000字以內, 目前字數:"+document.form_profile.about_me.value.length);
		document.form_profile.about_me.focus();
		return;
	}
	else
	{
		document.form_profile.action='save_profile.php';
		document.form_profile.submit();
	}
}

function openAvatarWin()
{
	window.open("../tools/set_avatar.php", "變更照片", "toolbar=no,menubar=no,location=no,directories=no,resizable=yes,height=600,width=800,scrollbars=yes");
}
