function show_popup(innerHTML, anchor, showOptions){
	AlloyJS.showPopup(innerHTML, anchor, showOptions);
}

function hide_popup() {
	AlloyJS.hidePopup();
}

function ajax_popup(href, anchor, options, data, caption) {

	var options = Object.merge(options || {}, {	wrapWithUi: true,
							     				uiOptions: { width: '800', cornerHandle: false}, 
							     				draggable: true,
							     				dragHandleSelector: '.top',
							     				autoHide: false, 
							     				caption: caption || ' ',
							     			});	

     AlloyJS.showAjaxPopup(href, anchor, options, data);	
}




