/**
 * This code was written by Mike Moore November 2009 and is the property of OnNowTV.com Broadcasting Association...Copyright 2008
 * This code MAY NOT BE USED without the expressed written consent of 
 * OnNowTV.com Broadcasting Association - all rights reserved.
 
 * File name:     jq_sendtofriend.js
 * Description:   define common global variables below:
 * History:       
 *   mm/dd/yyyy - Name - brief description of changes              
 */
 
$(document).ready(function() {
	
	$('a#btnSendToFriend').click(function() {
		$("#dialogsendtoafriend").dialog('open');
	})

	$("#dialogsendtoafriend").dialog({
		autoOpen: false, 
		bgiframe: true, 
		draggable: false, 
		height: 300, 
		modal: true, 
		position: 'top', 
		width: 350, 
		zIndex: 5000, 
		buttons: {
			'Send': function() {
				var urlLocation = 'http://'+location.hostname;
				$.post(urlLocation+'/scripts/jq_sendtofriend.php', $('#frmDialogSendToFriend').serialize());
				$(this).dialog('close');
			},
			'Cancel': function() {
				$(this).dialog('close');
			}
		}
	});
});