/*
	----------------------------------------------------------------------------------------------------
	Email a friend to open popup window.
	----------------------------------------------------------------------------------------------------
	
*/

function EmailAFriend(sURL,sPage) {
 			
			sPage = sPage + '?sURL=' + sURL;
			var oWin = window.open(sPage,'EmailAFriend','location=no,scrollbars=no,resizable=no,width=455,height=330,left=100,top=100');
			oWin.focus();
			//
		}