// Share Pop up  by Matthew Wilson, www.wilsonsitedesign.com
// Version 2010.10.10
// OK to use if this notice is included
   
function sharePop(filepath,text,id,WindowNumber) 
{

    PlayerWin = window.open('','Share','width=320,height=300,top=0,left=0,screenX=0,screenY=0,resizable=0,scrollbars=0,titlebar=0,toolbar=0,menubar=0,status=0,directories=0');
    PlayerWin.focus();
    PlayerWin.document.writeln("<html><head><title>Share this Sermon" +id+"</title><script type=\"text/javascript\" src=\"https://apis.google.com/js/plusone.js\">{lang: 'en-GB'}</script></head>");
    PlayerWin.document.writeln("<body background='http://www.saintfieldbaptist.org.uk/images/popBG.jpg'>"); // specify background img if desired
    PlayerWin.document.writeln("<div>");
	
	 PlayerWin.document.writeln("<center><b style ='font-size:18px;font-family:Arial, Helvetica, sans-serif;line-height:1.6'>Share this Sermon</b><br /></center>");
	PlayerWin.document.writeln("<p style='font-size:12px;font-family:Arial, Helvetica, sans-serif;'>Tweet:</p>");
    PlayerWin.document.writeln("<p><iframe allowtransparency=\"true\" frameborder=\"0\" scrolling=\"no\" src=\"http://platform.twitter.com/widgets/tweet_button.html?url=" + filepath + "&amp;text=" + text + "&amp;via=SaintfieldBC\" style=\"width:130px; height:20px;\"></iframe></p>");
	PlayerWin.document.writeln("<hr/>");
	PlayerWin.document.writeln("<p style='font-size:12px;font-family:Arial, Helvetica, sans-serif;'>Post on Facebook:</p>");
    PlayerWin.document.writeln("<p><iframe src=\"http://www.facebook.com/plugins/like.php?href=" + filepath + "&amp;layout=standard&amp;show_faces=false&amp;ref="+id+"&amp;width=400&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=35\" scrolling=\"no\" frameborder=\"0\" style=\"border:none; overflow:hidden; width:400px; height:35px;\" allowTransparency=\"true\"></iframe></p>");
	PlayerWin.document.writeln("<hr/>");
	PlayerWin.document.writeln("<p style='font-size:12px;font-family:Arial, Helvetica, sans-serif;'>+1 on Google+:</p>");
	PlayerWin.document.writeln("<p><g:plusone href=\""+filepath+"\"></g:plusone></p>");
    PlayerWin.document.writeln("</div></body></html>");
    PlayerWin.document.close(); // "Finalizes" new window
	
}

