//----------------------------------------------------------------------------------------------
// Author Lucian Plesnicute - Webstarsltd
//---------------------------------------------------------------------------------------------
 var bSendingMail = false;
$(document).ready(function() {

	  //---------------------------------------------------------------------------------------------
	$("#ID_EMAIL_GO").click(function(){
				 bSendingMail = true;
			           $.post("/ph_functs/mail.php",{
							  "address":$("#ID_EDIT_MAIL").val(),
		                      "subject":"Someone has emailed you a page from the Sound Rights website",
							  "content":"<h1>"+$("#ID_MODULE_TITLE").html()+
							                  "</h1><br/>"+
							                  $("#ID_MODULE_CONTENT").html().substring(0,255)+"<br/><br/>"+
											  "<b>You can view the whole page here: "+document.location+"</b>"
							             
					  },function(responseText)
					    {
						  alert(responseText);
						  bSendingMail = false;
 					     });										 
    });
	
    //---------------------------------------------------------------------------------------------
/*	$(".print").click(function(){
        $(window).print();
	 });*/
	
 });