function myLightView(url,options)
{
	Lightview.show(
	{
		href: url,
		rel: options['rel'],
		title: options['title'],
		caption: options['caption'],
		options: {
			autosize: options['autosize'],
			topclose: options['topclose'],
			width: parseFloat(options['width']),
			height: parseFloat(options['height']),
			closeButton: options['closeButton'],
			ajax: {
				method: options['method'],
				evalScripts: true,
				onComplete: function(){ $('name').focus(); }
			}
		}
	});
}
