function events()
{
	$("a.reload").click(function(){
		top.location.href = $(this).attr("href");
		return false;
	});
	$("a.main").click(function(){
		window.open($(this).attr("href"), "main");
		return false;
	});
	$("a.external").click(function(){
		window.open($(this).attr("href"), "_blank");
		return false;
	});

	$("td.product_other/img").click(function(){
		openPopup("popup_image.php?f=" + $(this).attr("src").replace("/thumb", ""), "lms_image", "height=300,width=300");
	});
}

function openPopup(url, windowname, features)
{
	var result = window.open(url, windowname, features);
	result.focus();
}