function LightboxDelegate(url,title) 
	{
		var anchor = this.document.createElement('a');
		anchor.setAttribute('rev', 'width: 500px; height: 600px; scrolling: auto;');
		anchor.setAttribute('title', title);
		anchor.setAttribute('href', url);
		anchor.setAttribute('rel', 'lyteframe');
		myLytebox.start(anchor, false, true);
	}
