document.write('<scr' + 'ipt type="text/javascript" src="/js/jquery/jquery.js"></scr' + 'ipt>');
document.write('<scr' + 'ipt type="text/javascript" src="/js/jquery/fancybox/jquery.fancybox-1.3.4.js"></scr' + 'ipt>');

function openFancybox(url, title, w, h) {
	$.fancybox({
		'href' : url,
		'title' : title,
		'width' : w,
		'height' : h,
		'titlePosition': 'top',
		'titleFormat' : formatTitle,
		'padding' : 0,
		'margin' : 0,
		'overlayOpacity' : .7,
		'overlayShow' : false,
		'showCloseButton' : false,
		'overlayShow' : true,
		'type' : 'iframe',
		'transitionIn' : 'none',
		'transitionOut' : 'none',
		'scrolling': 'hidden',
		'centerOnScroll': true
	});
}

function formatTitle(title, currentArray, currentIndex, currentOpts) {
	return title + '<span style="float: right;"><a href="javascript:;" onclick="$.fancybox.close();">close[X]</a></span>';
}

