
function getExtPage(targ) {
	$('html, body').animate({scrollTop:0}, 'fast');
	var theURL = targ;
	var viewHTML = '<iframe src="'+theURL+'" id="pageURL" marginwidth="0" marginheight="0" width="100%" height="100%" frameborder="0"></iframe>'+
	'<div id="coverTitleBar"><h1><span class="note">To view another Simply Smart series community, <strong>close this view window</strong>. &rarr;</span>Community View</h1><div id="closePreview">[CLOSE]</div></div>';
	$('body').append(viewHTML);
	$('html').css('overflow','hidden');
	$('.fullCover').css('height',$(window).height()).show();
	$('#coverTitleBar,#closePreview').click(function() {
		$('#pageURL, .fullCover, #coverTitleBar, #sampleWin').hide().remove();
		$('html').css('overflow','auto');
	});
	return false;
}
