function openPopup(id)
{	
	if(popupData[id]['h'] == ''){thickBoxH = 400;}
	else {thickBoxH = popupData[id]['h'];}
	
	if(popupData[id]['w'] == '') {thickBoxW = 400;}
	else {thickBoxW = popupData[id]['w'];}
	
	if(thickboxURL.search("/\?/"))
	{
		var slash = "&";
	}
	else
	{
		var slash = "?";
	}
	//alert(thickboxURL+'?KeepThis=true&TB_iframe=true&height='+thickBoxH+'&width='+thickBoxW);
	//alert(thickboxURL+slash+'puid='+id+'&KeepThis=false&TB_iframe=true&height='+thickBoxH+'&width='+thickBoxW);
	tb_show(popupData[id]['title'], thickboxURL+slash+'puid='+id+'&KeepThis=false&TB_iframe=true&height='+thickBoxH+'&width='+thickBoxW, null);
	$('#TB_window').draggable({handle: "#TB-title"});
	
}


$(document).ready(function() {

  $("area").click(function(e) {
	 var href = $(this).attr("href");
	 arr = href.split("#");
	 var popupID = arr[1];
	 //openPopup(popupID);
	$("#TB_window").css("top",e.clientY );
	$("#TB_window").css("left",e.clientX);
		
	$('#TB_window').mouseleave(tb_remove);
	
 
   });

 });

