<!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>Edward Kassner | 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">Edward Kassner</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><a href="/About-Us/History">History</a></li><li class = "  selectedl2"><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/edward-kassner" class="bc-currentpage">Edward Kassner</a></li> </ul> </div>

    <h2 class="gotham">
        Edward Kassner
    </h2>

<div id="leftwrapper" class="wrapperborder">
    <div id="left">
        <div id="pagecontent">
            <div id="bodytext">
                <h4><strong><img src="/clientImages/ek_young.jpg" title="Edward Kassner" alt="Edward Kassner" width="150" /> </strong>Edward Kassner (28.2.20 - 19.11.96)</h4>
<p>When BBC Radio broadcast The Edward Kassner Story in July 1991, they were paying tribute to one of the great pioneering music publishers of the post-war era, a man widely recognised in the popular music industry around the world. For Edward Kassner, music was more than just a business: it was a guiding light, the lucky talisman that never deserted him throughout a long and successful career.</p>
<p><br />Born of Jewish parentage on the 28th February 1920 in Vienna, Austria, Edward had aspirations of writing operas at an early age. Unfortunately, any plans the young composer may have had to realise these aspirations were cut short by Hitler's annexation of Austria. At seventeen, Edward was forced to flee his home, escaping across Germany to Holland, Belgium and eventually England, surviving by a combination of his wits and his music.</p>
<h4>How Lucky You Are sung by Vera Lynn becomes the first big hit</h4>
<p>Once in England, like many fellow German, Austrian and Italian refugees of the time, Edward was interned and deported to Australia on the SS Dunera. Later allowed to return, he joined the British Army, serving in France and Germany from 1941-1945 as an interpreter attached to a Canadian tank corps regiment, the Manitoba Dragoons. By 1944, he had married his wife Eileen, started his company, The Edward Kassner Music Co. Ltd. and had the first of his five children, Monica. One night in France, just after receiving word of the birth of his daughter and during heavy bombardment by the Germans, Edward wrote what would, in 1946, become his first big hit. Sung by <a href="/Writers-Artists/Featured-Artists/22?VERA-LYNN" title="VERA LYNN">Vera Lynn</a><span class="hide">|</span>, it was entitled <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>.</p>
<h4>Frank Sinatra, Perry Como, Nat King Cole&hellip;</h4>
<p>By the early 50s, Edward Kassner had amassed a string of hit songs with recordings by some of the most famous artists of the day, including Frank Sinatra, Perry Como, Nat King Cole, Vera Lynn, Anne Shelton, Dinah Shore, The Inkspots, Donald Peers and Mantovani. Already he had seen the advantages of working on both sides of the Atlantic and in 1951 he had opened an office in New York. His ability to pick a winning song and then to sell and promote it with apparently boundless determination and energy established his reputation as one of the hottest new publishers to emerge in the post-war era.</p>
<h4>Broadway Music Corp acquired in the US &nbsp;</h4>
<p>Ambitions for a Kassner worldwide music publishing empire began to grow with the acquisition of catalogues including Cecil Lennox Ltd., Harry Roy's J. Norris Music, Yale Music and, by the end of the decade, the US company of Albert Von Tilzer, Broadway Music Corp. Broadway held the rights to American standards such as <em><a href="/songs/Song217?YOU-MADE-ME-LOVE-YOU" title="View details of YOU MADE ME LOVE YOU by JOE MCCARTHY,JAMES MONACO">You Made Me Love You<span class="hide"> YOU MADE ME LOVE YOU by JOE MCCARTHY,JAMES MONACO</span></a><span class="hide">|</span></em>, <em></em><a href="/songs/Song207?I'LL-BE-WITH-YOU-IN-APPLE-BLOSSOM-TIME" title="View details of I'LL BE WITH YOU IN APPLE BLOSSOM TIME by NEVILLE FLEESON,ALBERT VON TILZER"><em>I'll</em> <em>Be With You In Apple Blossom Time</em><span class="hide"> I'LL BE WITH YOU IN APPLE BLOSSOM TIME by NEVILLE FLEESON,ALBERT VON TILZER</span></a><span class="hide">|</span><em></em> and <em><a href="/songs/Song413?TAKE-ME-OUT-TO-THE-BALL-GAME" title="View details of TAKE ME OUT TO THE BALL GAME by JACK NORWORTH,ALBERT VON TILZER">Take Me Out To The Ball Game<span class="hide"> TAKE ME OUT TO THE BALL GAME by JACK NORWORTH,ALBERT VON TILZER</span></a><span class="hide">|</span></em> and its purchase was a sign of Edward&rsquo;s intent to become a major player on the international music scene.</p>
<h4>Kassner Music publishes Rock Around the Clock</h4>
<p>Edward's defining success, however, was a song that changed the face of popular music - <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>. Always a gambler and innovator, he paid $250 for something that many of his contemporaries had turned down. Yet, within eighteen months, <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> was a sensation, on its way to becoming one of the most performed songs of all time and generating record sales of more than 170 million. Today it holds pride of place in Washington's Honour Roll Of Hits and is much sought after for film and television usage as the definitive musical icon of the '50s.</p>
<h4>Classic hits of the '50s and '60s</h4>
<p>Displaying a unique ability for spotting raw talent, Edward Kassner's successes during the late 50s and early 60s spanned a wide range of musical styles and tastes. From the classic rhythm and blues of <a href="/Writers-Artists/Featured-Writers/11?CHUCK-WILLIS" title="CHUCK WILLIS">Chuck Willis</a><span class="hide">|</span>, whose mournful <em><a href="/songs/Song199?I-FEEL-SO-BAD" title="View details of I FEEL SO BAD by CHUCK WILLIS">I Feel So Bad<span class="hide"> I FEEL SO BAD by CHUCK WILLIS</span></a><span class="hide">|</span></em> was recorded by Elvis Presley, to the teeny pop of <em><a href="/songs/Song169?BOBBY'S-GIRL" title="View details of BOBBY'S GIRL by HENRY HOFFMAN,GARY KLEIN">Bobby's Girl<span class="hide"> BOBBY'S GIRL by HENRY HOFFMAN,GARY KLEIN</span></a><span class="hide">|</span>,</em> to big ballads like the Ivor Novello award-winning <em><a href="/songs/Song1215?PORTRAIT-OF-MY-LOVE" title="View details of PORTRAIT OF MY LOVE by CYRIL ORNADEL,DAVID WEST">Portrait Of My Love<span class="hide"> PORTRAIT OF MY LOVE by CYRIL ORNADEL,DAVID WEST</span></a><span class="hide">|</span></em>, the hits kept coming. The catalogue swelled with some of the era&rsquo;s most fondly remembered songs, such as <em><a href="/songs/Song1230?THE-WHITE-ROSE-OF-ATHENS" title="View details of THE WHITE ROSE OF ATHENS by NORMAN NEWELL,MANOS HADJIDAKIS"><em>White Rose of Athens</em><span class="hide"> THE WHITE ROSE OF ATHENS by NORMAN NEWELL,MANOS HADJIDAKIS</span></a><span class="hide">|</span></em>, <em><a href="/songs/Song370?JAVA" title="View details of JAVA by ALLEN TOUSSAINT,ALVIN TYLER,FREDDY FRIDAY">Java<span class="hide"> JAVA by ALLEN TOUSSAINT,ALVIN TYLER,FREDDY FRIDAY</span></a><span class="hide">|</span></em>, <em><a href="/songs/Song494?WITH-THESE-HANDS" title="View details of WITH THESE HANDS by BENNY DAVIS,ABNER SILVER">With These Hands<span class="hide"> WITH THESE HANDS by BENNY DAVIS,ABNER SILVER</span></a><span class="hide">|</span></em>, <em><a href="/songs/Song214?SHOUT-SHOUT-(KNOCK-YOURSELF-OUT)" title="View details of SHOUT SHOUT (KNOCK YOURSELF OUT) by THOMAS BOGDANY,ERNEST MARESCA">Shout! Shout!(Knock Yourself Out)<span class="hide"> SHOUT SHOUT (KNOCK YOURSELF OUT) by THOMAS BOGDANY,ERNEST MARESCA</span></a><span class="hide">|</span></em>, <em><a href="/songs/Song256?CLOSE-YOUR-EYES-(TAKE-A-DEEP-BREATH)" title="View details of CLOSE YOUR EYES (TAKE A DEEP BREATH) by CHUCK WILLIS">Close Your Eyes<span class="hide"> CLOSE YOUR EYES (TAKE A DEEP BREATH) by CHUCK WILLIS</span></a><span class="hide">|</span></em> and <em><a href="/songs/Song386?PEPE" title="View details of PEPE by DORY LANGDON,ALDO VON PINELLI,HANS WITTSTATT">Pepe<span class="hide"> PEPE by DORY LANGDON,ALDO VON PINELLI,HANS WITTSTATT</span></a><span class="hide">|</span></em>.</p>
<h4>The signing of The Kinks&nbsp; &nbsp;</h4>
<p>Then in 1964, with the British invasion in full swing, a band called <a href="/Writers-Artists/Featured-Artists/33?THE-KINKS" title="THE KINKS">The Kinks</a><span class="hide">|</span> was signed to a management and publishing deal. A string of worldwide hits ensued, starting with <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>, followed by <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>, <em><a href="/songs/Song45?TIRED-OF-WAITING-FOR-YOU" title="View details of TIRED OF WAITING FOR YOU by RAYMOND DAVIES">Tired Of Waiting For You<span class="hide"> TIRED OF WAITING FOR YOU by RAYMOND DAVIES</span></a><span class="hide">|</span></em> and <em><a href="/songs/Song47?A-WELL-RESPECTED-MAN" title="View details of A WELL RESPECTED MAN by RAYMOND DAVIES">A Well Respected Man<span class="hide"> A WELL RESPECTED MAN by RAYMOND DAVIES</span></a><span class="hide">|</span></em>. Apart from establishing what is now widely considered an entirely new genre, this early period of <a href="/Writers-Artists/Featured-Writers/8?RAY-DAVIES" title="RAY DAVIES">Ray Davies</a><span class="hide">|</span>' creativity has provided hits for such international artists as Van Halen, The Stranglers and The Pretenders.</p>
<h4>President Records launched in 1966</h4>
<p>After almost twenty years, England had again become the focal point of Edward Kassner's business. With the arrival of the singer-songwriter limiting the traditional role of independent publishers, the need for an affiliated record company became apparent to Edward. In 1966, he set up <a onkeypress="window.open('http://www.president-records.co.uk');return false;"  onclick="window.open('http://www.president-records.co.uk');return false;" href="http://www.president-records.co.uk" title="open page: http://www.president-records.co.uk">President Records Ltd</a><span class="hide">|</span> and, within a year, the label had achieved its first chart successes with records by The Symbols and Felice Taylor, the latter a top 20 entry for the Barry White-co-written <em><a href="/songs/Song334?I-FEEL-LOVE-COMIN'-ON" title="View details of I FEEL LOVE COMIN' ON by BARRY WHITE,PAUL POLITI">I Feel Love Comin' On<span class="hide"> I FEEL LOVE COMIN' ON by BARRY WHITE,PAUL POLITI</span></a><span class="hide">|</span></em>.</p>
<h4>Eddy Grant and The Equals discovered</h4>
<p>Edward&rsquo;s next discovery was Britain's first successful racially-mixed group, The Equals, who stormed to the top of every European chart with <em>Baby Come Back</em> written by teenage band member Eddy Grant. Eddy Grant, whose father would have preferred him to become a doctor, acknowledges that Edward Kassner is responsible for his musical career. Indeed, there is a long list of artists, composers and music business leaders who would say the same of themselves.</p>
<h4>George McCrae and KC&nbsp;&amp; the Sunshine Band</h4>
<p>Success continued through the '70s for both the Kassner publishing and record companies. A licensing deal with a small Miami-based independent record company, TK Records, brought the 1974 disco phenomenon and best-seller, <em>Rock Your Baby</em> by George McCrae to the UK, giving President its second No.1. On a visit to TK&rsquo;s recording studios, Edward heard the B-side of a then unknown group and again proved his uncanny knack for judging popular taste, announcing that &ldquo;in the UK this would be a smash&rdquo;. He brought the tapes back to England and within a matter of weeks <em>Queen of Clubs</em> was high in the UK Top Ten, leading to a run of hits for K.C. &amp; The Sunshine Band.</p>
<h4>More than fourteen thousand copyrights</h4>
<p>The '80s saw production deals with rock legends <a href="/Songs/Song-Search?Search=Denny Laine">Denny Laine</a><span class="hide">|</span>, Eddie Hardin, <a href="/Songs/Song-Search?Search=Mike d'Abo">Mike d'Abo</a><span class="hide">|</span> and <a href="/Songs/Song-Search?Search=Ray Fenwick">Ray Fenwick</a><span class="hide">|</span> and, most significantly, keyboard wizard <a href="/Songs/Song-Search?Search=Rick Wakeman">Rick Wakeman</a><span class="hide">|</span>, whose long association with the Kassner group, first as artist and then as writer, has produced over thirty albums and more than a hundred copyrights. Edward continued at the helm of the Kassner group until his death in 1996. He left a legacy of one of the great independent music organizations which his son, David continues to grow today. President has become one of the longest-established independent record companies, owning many hundreds of master recordings, while the publishing companies own more than fourteen thousand copyrights.</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>

