
<!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>Company Profile | 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">Company Profile</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 = "  selectedl2 first"><a href="/About-Us/Company-Profile">Company Profile</a></li><li><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/company-profile" class="bc-currentpage">Company Profile</a></li> </ul> </div>

    <h2 class="gotham">
        Company Profile
    </h2>

<div id="leftwrapper" class="wrapperborder">
    <div id="left">
        <div id="pagecontent">
            <div id="bodytext">
                <p><img src="/clientImages/news_image_klogo.gif" title="KAP Logo" alt="KAP Logo" width="200" /> The Kassner group has a heritage of over 65 years and represents one of the great independent catalogues of popular music that includes <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>, <em><a href="/songs/Song53?YOU-REALLY-GOT-ME" title="View details of YOU REALLY GOT ME by RAYMOND DAVIES">You Really Got Me<span class="hide"> YOU REALLY GOT ME by RAYMOND DAVIES</span></a><span class="hide">|</span></em> and <em><a href="/songs/Song1?ALL-DAY-AND-ALL-OF-THE-NIGHT" title="View details of ALL DAY AND ALL OF THE NIGHT by RAYMOND DAVIES">All Day and All of the Night<span class="hide"> ALL DAY AND ALL OF THE NIGHT by RAYMOND DAVIES</span></a><span class="hide">|</span></em>, tracks widely acknowledged to have changed the face of popular music with their release. The total number of owned or administered copyrights currently exceeds seventy thousand and we are constantly looking to add songs of quality to our collection. Turnover and volume of business have grown throughout the duration of our existence but we have always maintained a tight, modern and well-run operation, with an international network of affiliates and sub-publishers which has allowed us to maximise the value of the copyrights in our care. <br /><br />Our aim is to offer outstanding personal service to our clients whilst continuing to increase our presence by the direct signing of both new and established songwriters and composers, catalogue acquisition and administration of copyrights. Recent examples of our approach in each of these areas are the exclusive publishing agreement entered into with up-and-coming composer, <a href="/Writers-Artists/Featured-Writers/16?CHRIS-TURPIN" title="CHRIS TURPIN">Chris Turpin</a><span class="hide">|</span> of the band, <a href="/Writers-Artists/Featured-Artists/39?KILL-IT-KID" title="KILL IT KID">Kill It Kid</a><span class="hide">|</span>, our purchase of the <a href="/Writers-Artists/Featured-Writers/23?SASH!" title="SASH!">Sash!</a><span class="hide">|</span> dance music catalogue and the administration of the songs of Tangerine Music, which include the R&amp;B classic <em><a href="/songs/Song13960?HIT-THE-ROAD-JACK" title="View details of HIT THE ROAD JACK by PERCY MAYFIELD">Hit the Road Jack<span class="hide"> HIT THE ROAD JACK by PERCY MAYFIELD</span></a><span class="hide">|</span></em> made famous by <a href="/Writers-Artists/Featured-Artists/29?RAY-CHARLES" title="RAY CHARLES">Ray Charles</a><span class="hide">|</span>. Above all, we are committed to the creative process, understanding and protecting the value of music in a rapidly evolving global environment.</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; 2010 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>
	<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>
