<!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>Frequently Asked Questions | 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">Frequently Asked Questions</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 = " 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 = " childselectedl1 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="/Contact-Us/Frequently-Asked-Questions">Frequently Asked Questions</a></li><li><a href="/Contact-Us/AR">A&amp;R</a></li><li><a href="/Contact-Us/Demo-Submissions">Demo Submissions</a></li><li class = " last"><a href="/Contact-Us/Career-Opportunities">Career Opportunities</a></li></ul>
    <div class="clear">
    </div>
</div>
<div id="maininner">
    
<div id="breadcrumb"><ul><li><a href="/">Home</a></li><li><a href="/Contact-Us">Contact Us</a></li><li><a href="/contact-us/frequently-asked-questions" class="bc-currentpage">Frequently Asked Questions</a></li> </ul> </div>

    <h2 class="gotham">
        Frequently Asked Questions
    </h2>


<script type="text/javascript" src="/include/sliders.js"></script>

<script type="text/javascript">

	window.addEvent('domready',function(){
	    var Slides=new Sliders({
	        button:'.faq-question',
	        slideClass:'.faq-answer',
			autoHide:true,
			openFirst:true,
			showImage:'/images/bullet-menu-child-selected.gif',
			hideImage:'/images/bg-category-arrow.gif',
			imageClass:'.show-hide-image'
	    });
	});	
</script>

<div id="leftwrapper" class="wrapperborder">
    <div id="left">
        <div id="pagecontent">
            
        <ul class="faqQAs">
                    <li class="faq-QA">
                        <div class="faq-question">
                            <h3>1. What is music publishing?</h3><div class="clear"></div>
                        </div>
                        <div class="faq-answer">
                            Music publishing is the business of acquiring the copyright in songs, exploiting and administering those copyrights and collecting and distributing the income earned from them, whilst protecting these acquired rights and the interests of their creators.<br />
<br />
A music publisher enters into agreements with owners of copyrights, songwriters or other companies, and they provide the functions outlined above on an exclusive basis for a defined term. This allows the creator to concentrate on the artistic side of things, whilst the publisher ensures the business side is taken care of on their behalf.
                                <br /><br /><a href="" title=""></a>
                            
                            
                        </div>
                    </li>
					
                    <li class="faq-QA">
                        <div class="faq-question">
                            <h3>2. What is copyright?</h3><div class="clear"></div>
                        </div>
                        <div class="faq-answer">
                            Copyright is an intellectual property right and exists in the words and in the music of an original piece of work. The copyright owner is the creator of the work, and is the one who has the “right to copy” that work in any form. The copyright owner can assign that right, by way of an agreement, to another party such as a music publisher.<br />
<br />
Copyrights are what the music publishing industry is based on and these rights are exploited, administered and protected by the publisher once they have been assigned to them. <br />
<br />
In the UK, copyright in a musical work lasts for a period of 70 years from the end of the calendar year in which the composer or author dies.
                                <br /><br /><a href="" title=""></a>
                            
                            
                        </div>
                    </li>
					
                    <li class="faq-QA">
                        <div class="faq-question">
                            <h3>3. I am looking for a publishing deal. How do I get one with Kassner?</h3><div class="clear"></div>
                        </div>
                        <div class="faq-answer">
                            Firstly, your songs will need to be heard by Kassner. If we think that there is potential in your songs that we can work with, we will contact you to discuss the possibilities around this. If, after our discussions, we think that working with you and your songs is a possibility, you may be offered a publishing deal with our company.<br />
<br />
Please see the “Demo Submissions” page to send us your songs for consideration.
                                <br /><br /><a href="http://www.kassnermusic.com/Contact-Us/Demo-Submissions" title="Demo Submissions >>">Demo Submissions >></a>
                            
                            
                        </div>
                    </li>
					
                    <li class="faq-QA">
                        <div class="faq-question">
                            <h3>4. As a songwriter, how do I know that Kassner will give me and my songs their utmost attention?</h3><div class="clear"></div>
                        </div>
                        <div class="faq-answer">
                            One of the advantages of being signed to Kassner is that we work very closely with our writers and we ensure that we give all our songs the same opportunities as our biggest copyrights. We will always try and find the best song for an intended use and we will not be biased in any way.<br />
<br />
We enjoy excellent relationships with our clients and are directly contactable for answering any query you may have. One of the central pillars of our success as a company has been the maintenance of the relationships we have with our clients and our understanding of their needs. 
                                <br /><br /><a href="" title=""></a>
                            
                            
                        </div>
                    </li>
					
                    <li class="faq-QA">
                        <div class="faq-question">
                            <h3>5. I have an existing catalogue of songs that I would like Kassner to represent. Will you be interested in administering or sub-publishing them?</h3><div class="clear"></div>
                        </div>
                        <div class="faq-answer">
                            We are always looking to increase our business by administering or sub-publishing new and interesting catalogues. If you have a catalogue of songs that you would like us to represent, then please contact us by e-mail on songs@kassner-music.co.uk or call us on 020 7385 7700.
                                <br /><br /><a href="http://www.kassnermusic.com/Contact-Us" title="Contact Us >>">Contact Us >></a>
                            
                            
                        </div>
                    </li>
					
                    <li class="faq-QA">
                        <div class="faq-question">
                            <h3>6. What is a synchronisation licence?</h3><div class="clear"></div>
                        </div>
                        <div class="faq-answer">
                            A synchronisation licence is a licence that permits you to ‘synchronise’ music with an audio/visual work. Such works include films, TV commercials, DVDs, film trailers etc… <br />
<br />
A licence must be obtained from the copyright owner before such a use can take place. The same permission from the owner of the sound recording must also be obtained for this type of use.
                                <br /><br /><a href="" title=""></a>
                            
                            
                        </div>
                    </li>
					
                    <li class="faq-QA">
                        <div class="faq-question">
                            <h3>7. How much does a synchronisation licence cost?</h3><div class="clear"></div>
                        </div>
                        <div class="faq-answer">
                            We do not have a set fee for synchronisation licences. Each request is looked at individually and a decision on the fee depends on a variety of criteria such as which song is requested, the type of use, the territory and the term of the licence. 
                                <br /><br /><a href="" title=""></a>
                            
                            
                        </div>
                    </li>
					
                    <li class="faq-QA">
                        <div class="faq-question">
                            <h3>8. How do I licence a song via the website?</h3><div class="clear"></div>
                        </div>
                        <div class="faq-answer">
                            If you would like to licence a song which is controlled by Kassner. then please fill in the form which is provided in our "Licensing" section.<br />
<br />
Your request will reach us immediately and one of our team will contact you directly so we can take your request further. 
                                <br /><br /><a href="http://www.kassnermusic.com/Licensing" title="Licensing >>">Licensing >></a>
                            
                            
                        </div>
                    </li>
					
                    <li class="faq-QA">
                        <div class="faq-question">
                            <h3>9. How long will it take to clear a song for licensing?</h3><div class="clear"></div>
                        </div>
                        <div class="faq-answer">
                            We will always contact you as soon as we can after we receive a licensing request. Once we have made contact and discussed the terms, the licence will be finalised as quickly as possible. This can take from a few days to a few weeks in most cases.
                                <br /><br /><a href="" title=""></a>
                            
                            
                        </div>
                    </li>
					
                    <li class="faq-QA">
                        <div class="faq-question">
                            <h3>10.  I would like to sample a song which is controlled by Kassner. How do I obtain permission to do so and what is the correct procedure?</h3><div class="clear"></div>
                        </div>
                        <div class="faq-answer">
                            We recognise that sampling is an important part of our business and we are always open to requests from those who wish to sample one of our songs. We would require you first to contact us with as many details of your request as possible, I.e.<br />
<br />
The song you would like to sample (duration/part(s) of song etc.);<br />
Any release details that have been planned;<br />
Other parties that are involved, if any; and<br />
A recording of the new work.<br />
<br />
We will consider all of the information and then discuss on a more personal level with you the possibilities of the sample being approved. Unfortunately, to protect the integrity of our copyrights, we cannot give any permissions without discussing the intended use with you first.
                                <br /><br /><a href="http://www.kassnermusic.com/Licensing" title="Licensing >>">Licensing >></a>
                            
                            
                        </div>
                    </li>
					
                    <li class="faq-QA">
                        <div class="faq-question">
                            <h3>11. Where can I find copies of sheet music of songs from the Kassner catalogue?</h3><div class="clear"></div>
                        </div>
                        <div class="faq-answer">
                            We still stock copies of individual sheet music for a lot of songs from our catalogues and will try and help you find what you are looking for at all times. If there is a piece of sheet music you are looking for in particular, please contact us and we will see if we can source it for you.
                                <br /><br /><a href="http://www.kassnermusic.com/Contact-Us" title="Contact Us >>">Contact Us >></a>
                            
                            
                        </div>
                    </li>
					
                    <li class="faq-QA">
                        <div class="faq-question">
                            <h3>12. I think that I may be owed royalties from Kassner or one of their affiliated companies. Who may I contact for assistance?</h3><div class="clear"></div>
                        </div>
                        <div class="faq-answer">
                            If you think that you may be owed royalties from us or you have not received a statement that you are expecting, it may be that we do not have the correct contact details for you. Please contact us using the details provided in the “Contact Us” section of the website, and we will be able to help you further with your enquiry.
                                <br /><br /><a href="http://www.kassnermusic.com/Contact-Us" title="Contact Us >>">Contact Us >></a>
                            
                            
                        </div>
                    </li>
					
                    <li class="faq-QA">
                        <div class="faq-question">
                            <h3>13. I have recently moved and I need to update my new address with Kassner. Who should I contact?</h3><div class="clear"></div>
                        </div>
                        <div class="faq-answer">
                            If you have recently moved, please e-mail or call us with your new contact details so our records are up-to-date. You can find our contact details under the “Contact Us” section of the website.
                                <br /><br /><a href="http://www.kassnermusic.com/Contact-Us" title="Contact Us >>">Contact Us >></a>
                            
                            
                        </div>
                    </li>
					
                    <li class="faq-QA">
                        <div class="faq-question">
                            <h3>14. How can I find out more about your songwriters?</h3><div class="clear"></div>
                        </div>
                        <div class="faq-answer">
                            You will find articles on featured songwriters under our “Featured Writers” section. You can also search our news archive for previous articles or use the search tool to find songwriters and their songs.<br />
<br />
If you cannot find what you are looking for, then please contact us using the details in our “Contact Us” section and we will answer your question to the best of our ability.
                                <br /><br /><a href="http://www.kassnermusic.com/Writers-Artists/Featured-Writers" title="Featured Writers >>">Featured Writers >></a>
                            
                            
                        </div>
                    </li>
					
                    <li class="faq-QA">
                        <div class="faq-question">
                            <h3>15. How does the song search tool on your site work?</h3><div class="clear"></div>
                        </div>
                        <div class="faq-answer">
                            You can use our search function to search for any song we control, our songwriters and the artists linked to our catalogues.<br />
 <br />
You need to enter your search criteria into the text box and press "Search". This will bring up every result linked to your keyword(s). You can then click on the appropriate link to find the information you are looking for.<br />
<br />
If you still cannot find a particular title then you may want to utilise the "Advanced Search". Here you can add in the genre of the song you are searching for as well as the copyright year or range if you know any of this information.  This may help you refine your search.
                                <br /><br /><a href="http://www.kassnermusic.com/Songs/Song-Search" title="Song Search >>">Song Search >></a>
                            
                            
                        </div>
                    </li>
					
                    <li class="faq-QA">
                        <div class="faq-question">
                            <h3>16. What does the music player on your website do?</h3><div class="clear"></div>
                        </div>
                        <div class="faq-answer">
                            The music player streams audio tracks and clips of songs featured on our website. You can create playlists with these songs so you can listen to them as you browse the site and when you visit other web pages.<br />
 <br />
If you would like to request a licence to use the song you are listening to then please click on “Request a Licence”. This will take you to our licensing form where you can send us the details of your request.
                                <br /><br /><a href="" title=""></a>
                            
                            
                        </div>
                    </li>
					
                    <li class="faq-QA">
                        <div class="faq-question">
                            <h3>17. How do I add tracks to my playlist?</h3><div class="clear"></div>
                        </div>
                        <div class="faq-answer">
                            Once you have found the track you would like to listen to, using our search tool, you can add it to your playlist by pressing “Queue Track” on the song page. This will immediately add the song and it will stay there for your enjoyment until you remove it. 
                                <br /><br /><a href="" title=""></a>
                            
                            
                        </div>
                    </li>
					
                    <li class="faq-QA">
                        <div class="faq-question">
                            <h3>18. How do I remove tracks from my playlist?</h3><div class="clear"></div>
                        </div>
                        <div class="faq-answer">
                            To remove a song from your playlist you should first highlight the song you would like to remove by clicking on it and then press “Remove from Playlist”. This will remove the song immediately.<br />
<br />
If you would like to remove all of the songs from your playlist then please use the “Clear List” action at the bottom of the music player. All your songs will be removed immediately and you can start a new playlist.
                                <br /><br /><a href="" title=""></a>
                            
                            
                        </div>
                    </li>
					
                    <li class="faq-QA">
                        <div class="faq-question">
                            <h3>19. How many songs can be added to a playlist?</h3><div class="clear"></div>
                        </div>
                        <div class="faq-answer">
                            You can add an unlimited number of songs to a playlist.
                                <br /><br /><a href="" title=""></a>
                            
                            
                        </div>
                    </li>
					
                    <li class="faq-QA">
                        <div class="faq-question">
                            <h3>20. What If I'm having technical difficulties using the site?</h3><div class="clear"></div>
                        </div>
                        <div class="faq-answer">
                            If you are having any technical difficulties, then please contact us with details of the nature of the problem at songs@kassner-music.co.uk.
                                <br /><br /><a href="http://www.kassnermusic.com/Contact-Us" title="Contact Us >>">Contact Us >></a>
                            
                            
                        </div>
                    </li>
					
                    <li class="faq-QA">
                        <div class="faq-question">
                            <h3>21. I am looking to buy a product which was released on the President label. How can I do that?</h3><div class="clear"></div>
                        </div>
                        <div class="faq-answer">
                            You can still buy any President releases which we have in stock by visiting www.president-records.co.uk and choosing the product(s) you are interested in and proceeding to the order form.<br />
<br />
*Please note that we no longer accept credit/debit card payments. All payments must be made by bank transfer or by cheque. Please contact hits@president-records.co.uk with any queries.
                                <br /><br /><a href="http://www.president-records.co.uk" title="President Records >>">President Records >></a>
                            
                            
                        </div>
                    </li>
					
                    <li class="faq-QA">
                        <div class="faq-question">
                            <h3>22. May I submit a demo of my songs to Kassner? Do you accept unsolicited material for consideration?</h3><div class="clear"></div>
                        </div>
                        <div class="faq-answer">
                            Yes, you may send us a demo of your songs as we do accept unsolicited material. You will find more information on how to send us your music in our Demo Submissions section in the “Contact Us” area of the website.*<br />
<br />
*Please note that owing to the high amount of unsolicited material we get sent we cannot guarantee a response, but if we like what we hear, we will of course be in touch.
                                <br /><br /><a href="http://www.kassnermusic.com/Contact-Us/Demo-Submissions" title="Demo Submissions >>">Demo Submissions >></a>
                            
                            
                        </div>
                    </li>
					
                    <li class="faq-QA">
                        <div class="faq-question">
                            <h3>23. I am interested in work experience with Kassner. Do you offer placements?</h3><div class="clear"></div>
                        </div>
                        <div class="faq-answer">
                            We often receive requests regarding work experience opportunities at Kassner. If an opportunity does arise, you will find details of the position, along with how to apply, under the “Contact Us” section of this website.
                                <br /><br /><a href="http://www.kassnermusic.com/Contact-Us/Career-Opportunities" title="Career Opportunities >>">Career Opportunities >></a>
                            
                            
                        </div>
                    </li>
					
                    <li class="faq-QA">
                        <div class="faq-question">
                            <h3>24. How do I find out about employment opportunities at Kassner?</h3><div class="clear"></div>
                        </div>
                        <div class="faq-answer">
                            We will advertise any employment opportunities, along with details of how to apply, under the “Contact Us” section of this website. You can also look in the jobs section in the music trade press and related websites.
                                <br /><br /><a href="http://www.kassnermusic.com/Contact-Us/Career-Opportunities" title="Career Opportunities >>">Career Opportunities >></a>
                            
                            
                        </div>
                    </li>
					
                    <li class="faq-QA">
                        <div class="faq-question">
                            <h3>25. How can I contact Kassner directly?</h3><div class="clear"></div>
                        </div>
                        <div class="faq-answer">
                            You will find all of our contact details by clicking on the “Contact Us” tab. Please e-mail us at songs@kassner-music.co.uk or call us on 020 7385 7700 and we will be able to help you with your query.
                                <br /><br /><a href="http://www.kassnermusic.com/Contact-Us" title="Contact Us >>">Contact Us >></a>
                            
                            
                        </div>
                    </li>
					
                    <li class="faq-QA">
                        <div class="faq-question">
                            <h3>26. How can I listen to a selection of the top songs from the Kassner catalogue?</h3><div class="clear"></div>
                        </div>
                        <div class="faq-answer">
                            You can listen to a selection of the top songs from the Kassner publishing catalogue by visting our Top Songs page.
                                <br /><br /><a href="http://www.kassnermusic.com/Songs/Top-Songs" title="Top Songs >>">Top Songs >></a>
                            
                            
                        </div>
                    </li>
					
        </ul>
        
        </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>
<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>

