<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
    <title>History | Kassner Music
    </title>
	
	<link rel="alternate" type="application/rss+xml" title="Kassner Music Latest News RSS Feed" href="/rss/1/1" />
	<link rel="alternate" type="application/rss+xml" title="Kassner Music Latest Releases RSS Feed" href="/rss/2/2" />	
	
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
    <link rel="stylesheet" type="text/css" href="/style.dcss" />
    <link rel="stylesheet" type="text/css" href="/css/flowplayer.css" />
    <link rel="stylesheet" href="/css/SqueezeBox.css" type="text/css" media="screen"
        title="no title" charset="utf-8" />
    <meta name="description" content="The Kassner group has a heritage of over 65 years and represents one of the great independent catalogues of popular music." />
    <meta name="keywords" content="Kassner Group, Kassner Music, Kassner Associated Publishers Limited, Edward Kassner Music Ltd, Edward Kassner, David Kassner, President Records" />
	<meta name="google-site-verification" content="S7wX6kpbjyNLextEkgsA5Ii49ynYR0bVNeFoRAQQJ_E" />
	<meta name="google-site-verification" content="fnRF6p6ts-TqqTkted00DWaoa2ym9knfDvbV9BrLPc8" />
    <script type="text/javascript" src="/include/clientcide-mootools-2.10.js"></script>

    <script type="text/javascript" src="/include/inc_basic.js"></script>

    <script type="text/javascript" src="/include/flowplayer-3.1.4.min.js"></script>

    <script type="text/javascript" src="/include/flowplayer.controls-3.0.2.min.js"></script>

    <script type="text/javascript" src="/include/SqueezeBox.js"></script>

    <script type="text/javascript" src="/include/inc_pagefunctions.js"></script>

	<script type="text/javascript">

		function addToPlayer(songId, typeID){
			
			var time = $random(0,100) - $time();
			var myHTMLRequest = new Request.JSON({url:'/include/fn_songdetails.asp'
			,onComplete:function(responseJSON, responseText){
				var songObj = JSON.decode(responseText);
				
				//console.log(songObj.songid + '|' + 'http://kassner.re-dev.co.uk/songfiles/thumbs/' + songObj.image + '|' + songObj.artist + '|' + songObj.title + '|' + 'http://kassner.re-dev.co.uk/songfiles/mp3s/' + songObj.mp3);
				if($('flashmp3player')){
					//send to flash as one long pipe delimited string!					
					//console.log(songObj.songid + '|' + 'http://kassner.re-dev.co.uk/songfiles/thumbs/' + songObj.image + '|' + songObj.artist + '|' + songObj.title + '|' + 'http://kassner.re-dev.co.uk/songfiles/mp3s/' + songObj.mp3);
					$('flashmp3player').addtrack(songObj.songid + '|' + '/songfiles/thumbs/' + songObj.image + '|' + songObj.artist + '|' + songObj.title + '|' + '/songfiles/mp3s/' + songObj.mp3 + '|' + typeID + '|' + songObj.recordingid);
				}
			}})
			.get({'songid': songId,'typeID':typeID,'time':time});
			
		}
		
		function addToPlayerAutoPlay(songId, typeID){
			
			var time = $random(0,100) - $time();
			var myHTMLRequest = new Request.JSON({url:'/include/fn_songdetails.asp'
			,onComplete:function(responseJSON, responseText){
				var songObj = JSON.decode(responseText);
				
				//console.log(songObj.songid + '|' + 'http://kassner.re-dev.co.uk/songfiles/thumbs/' + songObj.image + '|' + songObj.artist + '|' + songObj.title + '|' + 'http://kassner.re-dev.co.uk/songfiles/mp3s/' + songObj.mp3);
				if($('flashmp3player')){
					//send to flash as one long pipe delimited string!					
					$('flashmp3player').playtrack(songObj.songid + '|' + '/songfiles/thumbs/' + songObj.image + '|' + songObj.artist + '|' + songObj.title + '|' + '/songfiles/mp3s/' + songObj.mp3 + '|' + typeID + '|' + songObj.recordingid);
				}
			}})
			.get({'songid': songId,'typeID':typeID,'time':time});
			
		}
		
		function addPlayListToPlayer( playList ){
			if(!$('flashmp3player')){return false;}
			
			if($('flashmp3player').getlistlength() > 0 ) {$('flashmp3player').clearlistexternal();}
			
			
			playList.each(function(item,index){
				//console.log(item.id + ' | ' + item.typeid);
				if(index == 0){	
					addToPlayerAutoPlay(item.id,item.typeid);
				} else {
					addToPlayer(item.id,item.typeid);
				}					
			});
			
			
		}
		
		function sessionEnd(){
			if($('flashmp3player')){
				//alert('Test: Session ending');
				$('flashmp3player').savestate();
			}
		}
		
		if(Browser.Engine.trident){		
			//window.attachEvent('onbeforeunload', sessionEnd); 
			window.addEvent('beforeunload',function(){
				sessionEnd();
			});
		} else {			
			window.addEvent('unload',function(){
				sessionEnd();
			});
		}
		
		
		//session in progress
	
	
	function addGAEvent( trackDetails ){
		
		trackArray = trackDetails.split('|');
		var songId = trackArray[0];
		var typeId = trackArray[1];
		var temp = trackArray[2];
		
		if(typeId == 1){
			typeStr = '(S)';
		}
		if(typeId == 2){
			typeStr = '(R)';
		}
		//alert(trackDetails);
		var time = $random(0,100) - $time();
		var myHTMLRequest = new Request.JSON({url:'/include/fn_songdetails.asp'
		,onComplete:function(responseJSON, responseText){
			var songObj = JSON.decode(responseText);		
			var artist = songObj.artist;
			var title = songObj.title;
			//alert( title + ' | ' + artist + ' | ' + typeStr );	
			//try{
				
				//console.log(vidTitle);
				//console.log('Music Player','Play', title + ' | ' + artist + typeStr);
				//console.log(pageTracker);
				var eventStr = title + ' | ' + artist + typeStr;
				pageTracker._trackEvent('Music Player','Play', eventStr);
			//} catch(err){}
		}})
		.get({'songid': songId,'typeId':typeId,notrim:'1','time':time});
		
	}
</script>

		


 <!--[if IE 6]>
    <style type="text/css">      
		body{
			color:#f00!important;
		}
      
        div#maincontainer
		{
            filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/main_bg.png', sizingMethod='scale');
		}
		
    </style>
    <![endif]-->

</head>
<body>
    
	<!--<span class="hide">History</span>-->
    <div id="bgcontainer">
        <div id="outercontainer">
            <div id="header">
                <div id="headertop">
                    <div id="logo">
                        <h1>
                            Kassner Music
                        </h1>
                        <a class="homelink" href="/home"><span class="hide">Home</span></a>
                    </div>
                    <div id="headerright">
                        <span class="telephone gotham">+44 (0)20 7385 7700</span> <a class="gotham" href="mailto:songs@kassner-music.co.uk">
                            songs@kassner-music.co.uk</a>
							
						<a href="http://twitter.com/kassnermusic" onclick="window.open(this.href);return false;" onkeypress="window.open(this.href);return false;" style="display:block;margin-top:13px;"><img src="/images/twitter.gif" alt="Follow us on Twitter"/></a>
                    </div>
                    <div class="clear">
                    </div>
                </div>
                <div id="menu">
                    <ul class="menu1"><li><a href="/home">Home</a></li><li class = " childselectedl1 first"><a href="/About-Us/Company-Profile">About Us</a></li><li><a href="/Songs/Song-Search">Songs</a></li><li><a href="/Writers-Artists/Featured-Writers">Writers / Artists</a></li><li><a href="/Licensing">Licensing</a></li><li><a href="/News/Latest-News">News</a></li><li class = " last"><a href="/Contact-Us">Contact Us</a></li></ul>
                    <div id="searchbox">
                        <form action="/site-search" method="post">
                            <fieldset>
							<label for="searchtext"><span class="hide">site search</span></label>
                                <input id="searchtext" type="text" name="searchtext" class="text" value="Site Search" onfocus="ClearInput(this, 'Site Search');"
                                    onblur="ReplaceInputPrompt(this, 'Site Search');" />
                                <input type="image" src="/images/go.gif" alt="Search" class="image" />
                            </fieldset>
                        </form>
                    </div>
                    <div class="clear">
                    </div>
                </div>
            </div>
            <div id="maincontainer">
<div id="submenu">
    <ul class="menu2"><li class = " first"><a href="/About-Us/Company-Profile">Company Profile</a></li><li class = "  selectedl2"><a href="/About-Us/History">History</a></li><li><a href="/About-Us/Edward-Kassner">Edward Kassner</a></li><li class = " last"><a href="/About-Us/Global-Coverage">Global Coverage</a></li></ul>
    <div class="clear">
    </div>
</div>
<div id="maininner">
    
<div id="breadcrumb"><ul><li><a href="/">Home</a></li><li><a href="/About-Us">About Us</a></li><li><a href="/about-us/history" class="bc-currentpage">History</a></li> </ul> </div>

    <h2 class="gotham">
        History
    </h2>

<div id="leftwrapper" class="wrapperborder">
    <div id="left">
        <div id="pagecontent">
            <div id="bodytext">
                <h4><img src="/clientImages/ek_young.jpg" title="Edward Kassner" alt="Edward Kassner" width="150" /> The founding of Edward Kassner Music Co Ltd&hellip;</h4>
<p>Publishing has changed over the years but at its core it remains about the song and it was Edward Kassner&rsquo;s ability to pick a great tune that enabled him to establish the company that still bears his name over six decades later. As an 18 year old music student he fled Nazi Austria and arrived in the UK in April 1939.</p>
<h4>Lyricist seeks composer for writing partnership</h4>
<p>Initially Edward found a job in the East End cutting felt for hats but music was always his true passion and he regularly searched the music papers for an opportunity to put his talents to good use. He eventually spotted an ad placed by someone looking for a composer to write music for his lyrics. The ad had been put there by a retired Army Captain, Peter Mulroney, who, with his wife Monica, took the young refugee into their Chelsea home. Mayfair Music was formed to publish their compositions.</p>
<h4>The first hit&hellip; well, sort of&hellip;</h4>
<p>Peter and Edward soon had their first hit though it was not, unfortunately, a musical one: the Blitz had begun and their offices in New Oxford Street were struck by a doodlebug. The company struggled on but with France&rsquo;s collapse in 1940, Britain became so concerned for its own security that refugees were rounded up and shipped abroad. Edward was sent to Australia on the SS Dunera but, like so many other young internees, wanted to join the British Army. He was eventually allowed to do so and was returned to Britain.</p>
<h4>Edward Kassner Music Co. Ltd is born</h4>
<p>In 1943, Eddie met a young Englishwoman, Eileen, at London&rsquo;s Hammersmith Palais, They fell in love and married soon after. Edward started to plan for the future and in 1944 together they formed The Edward Kassner Music Co Ltd.</p>
<h4>&ldquo;You&rsquo;ve got a hit there, Sarge!&rdquo;</h4>
<p>Army life changed after the D-Day invasion and as the Allies advanced interpreters were needed. Edward was attached to a Canadian tank corps regiment. Off-duty, soldiers would gather round a piano and Eddie would play songs. Around this time he wrote a song called <em><a href="/songs/Song1203?HOW-LUCKY-YOU-ARE" title="View details of HOW LUCKY YOU ARE by EDDIE CASSEN,DESMOND O'CONNOR">How Lucky You Are<span class="hide"> HOW LUCKY YOU ARE by EDDIE CASSEN,DESMOND O'CONNOR</span></a><span class="hide">|</span></em>. The soldiers used to say, &ldquo;You&rsquo;ve got a hit there, Sarge!&rdquo; (as he had been promoted by then) and they were right.<br /><br />Demobbed in 1946, and convinced that his song had the potential for something great, he went out and started plugging it to the various music hall stars of the time. Artists like Pearl Carr and Teddy Johnson and Ted Andrews, Julie&rsquo;s father, began to sing it a lot. In those days, the audiences were encouraged to sing along with the help of big lyric sheets and someone pointing out the words with a large stick.</p>
<h4>The lady says &ldquo;No.&rdquo;</h4>
<p><em><a href="/songs/Song1203?HOW-LUCKY-YOU-ARE" title="View details of HOW LUCKY YOU ARE by EDDIE CASSEN,DESMOND O'CONNOR">How Lucky You Are<span class="hide"> HOW LUCKY YOU ARE by EDDIE CASSEN,DESMOND O'CONNOR</span></a><span class="hide">|</span></em> was proving popular with the crowds but it was only when it was sung on BBC radio by the Forces' Sweetheart, <a href="/Writers-Artists/Featured-Artists/22?VERA-LYNN" title="VERA LYNN">Vera Lynn</a><span class="hide">|</span>, that it suddenly took off. The next day a rival publisher offered the young composer/publisher &pound;250 for the rights to the song. It was a lot of money at the time but, even though they had struggled for so long, when Eddie asked his wife if they should sell it, she told him the answer in no uncertain terms: &ldquo;No.&rdquo; Edward Kassner Music held on to the song and three weeks later it was number 1 &ndash; becoming the fledgling publisher&rsquo;s first hit.</p>
<h4>Songwriter turned publisher</h4>
<p>Although songwriting had given him his start, Edward Kassner soon realised that he had even more potential as a publisher. Over the next few years he published a string of hits with many of the famous artists of the day, <em><a href="/songs/Song646?IF" title="View details of IF by STANLEY DAMERELL,TOLCHARD EVANS,ROBERT HARGREAVES">If<span class="hide"> IF by STANLEY DAMERELL,TOLCHARD EVANS,ROBERT HARGREAVES</span></a><span class="hide">|</span></em>, <em><a href="/songs/Song273?ROUND-AND-ROUND" title="View details of ROUND AND ROUND by JOE SHAPIRO,LOU STALLMAN">Round and Round<span class="hide"> ROUND AND ROUND by JOE SHAPIRO,LOU STALLMAN</span></a><span class="hide">|</span></em> (Perry Como), <em><a href="/songs/Song1211?MY-SON-MY-SON" title="View details of MY SON MY SON by EDDIE CALVERT,BOB HOWARD,GORDON REES">My Son, My Son<span class="hide"> MY SON MY SON by EDDIE CALVERT,BOB HOWARD,GORDON REES</span></a><span class="hide">|</span></em> (<a href="/Writers-Artists/Featured-Artists/22?VERA-LYNN" title="VERA LYNN">Vera Lynn</a><span class="hide">|</span>), <em><a href="/songs/Song1196?THE-BOOK" title="View details of THE BOOK by RAY MARTIN,PADDY ROBERTS">The Book<span class="hide"> THE BOOK by RAY MARTIN,PADDY ROBERTS</span></a><span class="hide">|</span></em> (David Whitfield) and <em><a href="/songs/Song1208?LONELY-BALLERINA" title="View details of LONELY BALLERINA by MICHAEL CARR,ANNUNZIO MANTOVANI">Lonely Ballerina<span class="hide"> LONELY BALLERINA by MICHAEL CARR,ANNUNZIO MANTOVANI</span></a><span class="hide">|</span></em> (Mantovani) to name but a few.</p>
<h4>The dream becomes reality</h4>
<p>By 1953, having gained a reputation as one of Britain&rsquo;s hot new publishers, Edward was approached by an unlikely character, an ex-US marine from Philadelphia, with a song called <em><a href="/songs/Song73?ROCK-AROUND-THE-CLOCK" title="View details of ROCK AROUND THE CLOCK by JIMMY DE KNIGHT,MAX FREEDMAN">Rock Around the Clock<span class="hide"> ROCK AROUND THE CLOCK by JIMMY DE KNIGHT,MAX FREEDMAN</span></a><span class="hide">|</span></em>. Edward&rsquo;s instinct for a hit didn&rsquo;t fail him and he signed up the song for $250. The B-side of a recording by <a href="/Writers-Artists/Featured-Artists/40?BILL-HALEY" title="BILL HALEY">Bill Haley and his Comets</a><span class="hide">|</span>, it was used in the film <em>Blackboard Jungle</em> and became a global sensation, establishing the company&rsquo;s worldwide presence in the process.<br /><br /></p>
            </div>
            
            
            
        </div>
    </div>
</div>
<div id="playerholder">
    <div id="player">

	<object width="214" height="485" id="flashmp3player" data="/flash/player.swf" type="application/x-shockwave-flash">
		<param name="allowScriptAccess" value="sameDomain" />
		<param name="allowFullScreen" value="false" />
		<param name="movie" value="/flash/player.swf" />
		<param name="quality" value="high" />
		<param name="bgcolor" value="#ffffff" />
		<param name="wmode" value="transparent" />	
		<img src="/images/temp/player.gif" alt="Temp player" />		
	</object>
</div><div class="top-songs">
    <a href="/Songs/Top-Songs" title="see our top songs">
        <img src="/images/songs.gif" alt="top songs" /></a>
</div>

</div>
<div class="clear">
</div>
				    </div>
			    </div>
			<div id="footer"></div>
			<div id="footerlinks"><span>&copy; 2012 Kassner Associated Publishers Limited</span>
			
			<ul>
			<li><a href="/Contact-Us/Career-Opportunities" title="">Careers</a>|</li>
			<li><a href="/Contact-Us/Frequently-Asked-Questions" title="">FAQs</a>|</li>
			<li><a href="/Contact-Us" title="">Contact Us</a>|</li>
			<li><a href="/Disclaimer" title="">Disclaimer</a>|</li>
			<li><a class="last" href="/Terms-Conditions" title="">Terms &amp; Conditions</a><span class="hide">|</span></li>
			</ul>
			<div class="footer"></div>
			</div>
		</div>
	</div>

	<script type="text/javascript" src="/include/cufon.js"></script>
	<script type="text/javascript" src="/include/gotham1.font.js"></script>
	<!--[if gte IE 9]><script type="text/javascript"> Cufon.set('engine', 'canvas'); </script><![endif]-->
	<script type="text/javascript">
		Cufon.replace('.gotham',{fontFamily:'Gotham'});
		Cufon.replace('div#menu ul li a, div#submenu ul li a',{fontFamily:'Gotham'});
	</script>	
	<script type="text/javascript"> Cufon.now(); </script>	
	<script type="text/javascript">
		var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
		document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
	</script>
	<script type="text/javascript">
		try {
			var pageTracker = _gat._getTracker("UA-10376270-1");
			pageTracker._setDomainName("none");
			pageTracker._setAllowLinker(true);
			pageTracker._trackPageview();
		} catch(err) {}
	</script>
	
</body>
</html>

