<!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>Licensing | 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">Licensing</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 class = "  selectedl1"><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">
    
    <div class="clear">
    </div>
</div>
<div id="maininner">
    
<div id="breadcrumb"><ul><li><a href="/">Home</a></li><li><a href="/licensing" class="bc-currentpage">Licensing</a></li> </ul> </div>

    <h2 class="gotham">
        Licensing
    </h2>

<div id="leftwrapper" class="wrapperborder">
    <div id="left">
        <div id="pagecontent">
            <div id="requiredtext">
                
<div class="form-intro">
    <p>If&nbsp;you are looking to license or clear a song from our catalogue, please complete the below form and send it to us using the 'Send Request' button at the bottom. We would appreciate it if you could provide us with as much information about your&nbsp;proposed use&nbsp;as possible. As soon as we receive your request one of our team will contact you to discuss it further with you. If you would like to demo a full length track, then please indicate so in the 'Comments' box below.</p>
<p>To check if we control the song you are looking for,&nbsp;you can&nbsp;use our <a href="/songs/song-search/" title="songs/song-search">Song Search</a><span class="hide">|</span> facility. Please note, however,&nbsp;that not all works are controlled for all territories.&nbsp;If we&nbsp;do not represent the song you are interested in in your territory, we will offer alternatives or pass on your request to&nbsp;the original publisher as applicable.</p>
<p>If, for any reason,&nbsp;you would like to contact one of our team directly, please use the details provided on&nbsp;the <a href="/contact-us/" title="contact-us">Contact Us</a><span class="hide">|</span> page.</p>
</div>

<div class="mand">
    <em>*</em> Denotes mandatory field.
</div>
<div id="licence-form">
    <form action="/licensing" method="post">
        <table summary="Request a song licence using this form">
            <tr>
                <td class="left">
					<input type="hidden" name="submitted" value="true" id="submitted" />
					<input type="hidden" name="songcode" value="" />
                    <label for="title">Song title</label>
                </td>
                <td class="right">
                    <input class="text" type="text" name="title" id="title" maxlength="100" onfocus="ClearInput(this, 'Song Title');" value="Song Title" />
                </td>
            </tr>
            <tr>
                <td class="left">
                    <label for="writer">Writer(s)</label>
                </td>
                <td class="right">
                    <input class="text" type="text" name="writer" id="writer" maxlength="100" onfocus="ClearInput(this, 'Company');" value="Writers(s)" />
				</td>
            </tr>
            <tr class="radio">                
                <td class="left">					
                    Type of use/licence&nbsp;<span>*</span>
                </td>
                <td class="right">
                    <input type="radio" name="licence" id="li-advertising" value="advertising" /><label for="li-advertising">ADVERTISING</label>
				</td>
            </tr>
            <tr class="radio">
                <td class="left">
                    &nbsp;
				</td>
                <td class="right">
                    <input type="radio" name="licence" id="film" value="film " /><label for="film">FILM</label>
                </td>
            </tr>
            <tr class="radio">
                <td class="left">
                    &nbsp;
                </td>
                <td class="right">
                    <input type="radio" name="licence" id="tv" value="tv" /><label for="tv">TV</label>
                </td>
            </tr>
            <tr class="radio">
                <td class="left">
                    &nbsp;</td>
                <td class="right">
                    <input type="radio" name="licence" id="print" value="print" /><label for="print">PRINT</label>
                </td>
            </tr>
            <tr class="radio">
                <td class="left">
                    &nbsp;</td>
                <td class="right">
                    <input type="radio" name="licence" id="digital" value="digital" /><label for="print">DIGITAL</label>
                </td>
            </tr>			
            <tr>
                <td class="left">
                    &nbsp;</td>
                <td class="right" style="color: #000;">
                    <input type="radio" name="licence" id="other" value="other" /><label for="other">OTHER</label>
                </td>
            </tr>
            <tr>
                <td class="left">
                    <label for="territory">Territory</label>
                </td>
                <td class="right">
                    <input class="text" type="text" name="territory" id="territory" maxlength="100" onfocus="ClearInput(this, 'Territory');" value="Territory" />
                </td>
            </tr>
            <tr>
                <td class="left">
                    <label for="term">Term</label>
                </td>
                <td class="right">
                    <input class="text" type="text" name="term" id="term" maxlength="100" onfocus="ClearInput(this, 'Term');" value="Term" />
                </td>
            </tr>
            <tr>
                <td class="left">
                    <label for="fname">Your name&nbsp;<span>*</span></label>
                </td>
                <td class="right">
                    <input class="text" type="text" name="fname" id="fname" maxlength="100" onfocus="ClearInput(this, 'Name');" value="Name" />
                </td>
            </tr>
            <tr>
                <td class="left">
                    <label for="company">Your company&nbsp;<span>*</span></label></td>
                <td class="right">
                    <input class="text" type="text" name="company" id="company" maxlength="100" onfocus="ClearInput(this, 'Company');" value="Company" />
                </td>
            </tr>
            <tr>
                <td class="left">
                    <label for="address">Your address</label>
                </td>
                <td class="right" style="padding: 0 0 10px 0">
                    <textarea onkeypress="return imposeMaxLength(event, this, 200);" class="text" rows="20" cols="30" name="address" id="address" onfocus="ClearInput(this, 'Address');">Address</textarea>
				</td>
            </tr>
            <tr>
                <td class="left">
                    <label for="telephone">Your telephone number</label></td>
                <td class="right">
                    <input class="text" type="text" name="telephone" id="telephone" maxlength="30" onfocus="ClearInput(this, 'Telephone');" value="Telephone" />
                </td>
            </tr>
            <tr>
                <td class="left">
                    <label for="email">Your email address&nbsp;<span>*</span></label></td>
                <td class="right">
                    <input class="text" type="text" name="email" id="email" maxlength="80" onfocus="ClearInput(this, 'Email');" value="Email" />
                </td>
            </tr>
            <tr>
                <td class="left">
                    <label for="comments">Your comments</label></td>
                <td class="right" style="padding: 0 0 20px 0;">
                    <textarea onkeypress="return imposeMaxLength(event, this, 1000);" class="text" rows="20" cols="30" name="comments" id="comments" onfocus="ClearInput(this, 'Comments');">Comments</textarea>
                </td>
            </tr>
            <tr>
                <td class="left">
                    &nbsp;</td>
                <td class="right">
                    <input type="image" src="/images/btn-submit.gif" alt="submit"/></td>
            </tr>
        </table>
    </form>
</div>

            </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>
<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>

