jQuery(document).ready(function() {
	jQuery('#insert-product-url').click( function() {
		var link = jQuery('#product').val();
		var title = jQuery('#product option:selected').html();
		top.send_to_editor('<a href="' + link + '">' + title + '</a>');
		top.tb_remove();
		return false;
	});
})