
	queue(function()
	{
		var content	= document.getElementById('content') ;
		var ad_slot2	= document.getElementById('ad_slot2') ;
		
		if(!content || !ad_slot2){
			return ;
		
		}
		
		var height1	= parseInt(content.offsetHeight) ;
		var height2	= parseInt(ad_slot2.offsetHeight) ;
		
		if(height2 > height1) 
		{
			height1 = height2 ;
			content.style.height = (height2 - 6) +'px' ;
		}
		
		return ;
		
	}) ;
	
	function send_article(title)

	{

		var body	= 'I thought you might be interested in this article on IDJ Magazine:\n\n' + title + ' - ' + location.href + '\n\n' ;

		var subject	= 'IDJ Magazine - ' + title ;	

		location.href = 'mailto:?subject=' + escape(subject) + '&body=' + escape(body) ;

	}
