﻿function SendToFriend(jobID, isPlacement) {
	var ownName, ownEmail, otherName, otherEmail, comment;

	ownName = jQuery('#facebox #sfownname').val();
	ownEmail = jQuery('#facebox #sfownemail').val();
	otherName = jQuery('#facebox #sfothername').val();
	otherEmail = jQuery('#facebox #sfotheremail').val();
	comment = jQuery('#facebox #sfcomment').val();

	PageMethods.SendToFriend(jobID, isPlacement, ownName, ownEmail, otherName, otherEmail, comment, function (r) { OnSendToFriendCompleted(r, isPlacement == true ? 'stage' : 'vacature'); });
}

function OnSendToFriendCompleted(r, type) {
	if (r == "ok") {
		jQuery('#facebox #sendfriendform').html('<p>De ' + type + ' is doorgestuurd.</p>');
	}
	else {
		jQuery('#facebox #sendfrienderror').show().html(r);
	}
}
