function vncDisplay() {

	var yes = new LertButton('Cancel', function() {
		//do nothing
	});

	var maybe = new LertButton('Windows', function() {
		window.location.href = '/download/vnc/windows/TechSupport.exe';
	});

	var no = new LertButton('Mac', function() {
		window.location.href = '/download/vnc/mac/RemoteTechSupportOSX.zip';
	});

	var message = "Please only use this virtual support client when in direct contact with a support agent.";
	var exampleLert = new Lert(
		message,
		[no,maybe,yes],
		{
			defaultButton:yes,
			icon:'/images/icons/dialog-information.png'
		});

	exampleLert.display();

}
