function launchPop(target) {

$(function() {

	var closeImg = 'close.jpg';

	if (closeImg != '') {toClose = '<img src="'+closeImg+'" alt="CLOSE |X|" />';} else {toClose = 'CLOSE |x|'};
//	$('.smfbox').live('click',function(){
//		target = $(this).attr('href');
		$('body').append('<div id="smfoverlay"></div><div id="smfboxwrap"><div id="smfbox"><div id="smfcaption">&nbsp; <span id="smfclose">'+toClose+'</span></div><iframe src="entry.asp" frameborder="0" id="smfcopy" /></div></div>');
			
			//window starts off hidden to give the ajax time to load
			$('#smfoverlay').css('opacity', '0.75');
			$('#smfoverlay').fadeIn();
			$('#smfbox').fadeIn();

		//Remove litebox when you click the close bar
		$('#smfclose').click(function(){
			$('#smfbox').fadeOut();
			$('#smfoverlay').fadeOut(1000, function(){
				$('#smfboxwrap').remove();
				$('#smfoverlay').remove();
			});
		});

		//Remove litebox when you click outside its borders
		$('#smfoverlay').click(function(){
			$('#smfbox').fadeOut();
			$('#smfoverlay').fadeOut(1000, function(){
				$('#smfboxwrap').remove();
				$('#smfoverlay').remove();
			});
		});
		
	//prevent the default link behavior			
//	return false;
//	});

});

}