//CONTROLLING EVENTS IN jQuery
$(document).ready(function(){
	$("#abc a",this).click(function(){
		var tlink = $(this).attr("href");
		var delayLink = "http://www.marthastewart.com/static_html/forwarding.html?link="+tlink;	
		window.open(delayLink, 'popup', 'menubar=1,scrollbars=1,toolbar=1,resizable=1,height=800, width=1100');
		return false;
	});
		
	$("span.sss").append('<a href="#" class="sss-details">Details</a>');
	
	$(".sss-details").click(function(){
		window.open('http://www.amazon.com/gp/help/customer/display.html/ref=mk_gship_dp?ie=UTF8&nodeId=527692&pop-up=1', 'popup', 'menubar=0, scrollbars=1, toolbar=0, resizable=1, height=700, width=600');
		return false;
	});
});

