var tabsVisited=[];function getComments(box_id,slot_id,slot_name)
{if(!myPage){return;}
var page='/widgets/holiday_wish_list/actions/ajax_get_comments.php?slot_name='+slot_name;var mainCommentBox=document.getElementById(box_id+'_comment_list');var slotCommentBox=document.getElementById(box_id+'_comment_list_'+slot_id);mainCommentBox.innerHTML='Loading...';ajax_getPage(page,function(data){if(data){mainCommentBox.innerHTML=data;slotCommentBox.innerHTML=data;}});}
function switchTab(box_id,slot_id,slot_name)
{var tab;var content;if(!box_id||!slot_id){return;}
for(i=1;i<=3;i++){tab=document.getElementById('slot_'+i+'-'+box_id+'_tab');content=document.getElementById('slot_'+i+'-'+box_id+'_content');if(tab){if(i==slot_id){tab.className='active';}
else{tab.className='';}}
if(content){if(i==slot_id){content.style.display='block';}
else{content.style.display='none';}}}
if(!myPage){var slotName=document.getElementById(box_id+'_slot_name');slotName.value=slot_name;}
tabsVisited.push(slot_id+'-'+box_id);}
function showCommentBox(box_id)
{var commentBox=document.getElementById(box_id+'_comment_box');var sentMessage=document.getElementById(box_id+'_comment_sent');if(commentBox){commentBox.style.display='block';}
if(sentMessage){sentMessage.style.display='none';}}